/**
 * Zenovia Theme - Modern Premium CSS
 * 
 * デザイン方針：「信頼と躍動の融合」
 * - ホテルのコンシェルジュデスクのような洗練性
 * - 余白を活かしたクリーンなレイアウト
 * - インタラクティブだが上品な演出
 * - 2026年トレンド対応（ミニマリズム × 躍動性）
 * 
 * @package Zenovia
 * @version 2.0.0
 */

/* =========================================
   CSS Variables - Modern Color & Design System
   ========================================= */
:root {
    /* Primary Colors */
    --c-white: #FFFFFF;
    --c-bg: #FAFBFC;
    --c-bg-light: #F5F7FA;
    --c-text: #0F172A;
    --c-text-light: #64748B;
    --c-text-lighter: #94A3B8;

    /* Accent Colors - Trust + Warmth */
    --c-accent: #afbb3d;
    /* Green - Trust & Growth */
    --c-accent-light: #6EE7B7;
    /* Light Green - Secondary */
    --c-accent-blue: #06B6D4;
    /* Cyan - Modern accent */
    --c-accent-gold: #F59E0B;
    /* Gold - Premium touch */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #afbb3d 0%, #06B6D4 100%);
    --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Fonts */
    --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-en: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    /* Shadows - Soft & Elegant */
    --shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-medium: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-hard: 0 24px 64px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 32px rgba(16, 185, 129, 0.15);

    /* Spacing */
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Global Reset & Typography
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-jp);
    color: var(--c-text);
    background: var(--c-white);
    line-height: 1.75;
    overflow-x: hidden;
    font-feature-settings: "palt";
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Utility Classes */
.text-accent {
    color: var(--c-accent);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-light {
    background: linear-gradient(180deg, var(--c-white) 0%, var(--c-bg-light) 100%);
}

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

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* =========================================
   Premium Button Styles
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-en);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
    pointer-events: none;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--lg {
    padding: 14px 40px;
    font-size: 15px;
}

.btn--primary {
    background: var(--c-accent);
    color: var(--c-white);
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

.btn--white {
    background: var(--c-white);
    color: var(--c-accent);
    box-shadow: var(--shadow-medium);
    font-weight: 700;
}

.btn--white:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-hard);
}

/* =========================================
   Glassmorphic Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all var(--transition-base);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header:hover::after {
    opacity: 1;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 32px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: auto;
    flex-shrink: 0;
    padding-right: 32px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo-img {
    max-height: 65px;
    height: auto;
    object-fit: contain;
    width: auto;
    vertical-align: middle;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* これでロゴとの間を広げ、ナビを中央〜左寄りに配置 */
    margin-right: 30px;
    /* 翻訳ボタンとの距離を確保 */
}

.nav__list {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav__item {
    position: relative;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 15px;
    padding: 32px 0;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.nav__item::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 999px;
    transition: width var(--transition-base);
}

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

.nav__item:hover::after {
    width: 100%;
}

/* =========================================
   Ultra Modern Mega Menu
   ========================================= */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 700px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav__item.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega Menu Grid Style (Business Hub) */
.mega-menu--grid {
    width: 1100px;
    max-width: 95vw;
}

.mega-grid-wrapper {
    padding: 40px;
    background: var(--c-white);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mega-grid__item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.mega-grid__item:hover {
    background: var(--c-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--c-accent);
}

.mega-grid__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mega-grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mega-grid__item:hover .mega-grid__image img {
    transform: scale(1.1);
}

.mega-grid__content {
    flex: 1;
}

.mega-grid__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-grid__sub {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.mega-grid__desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--c-text-light);
    margin: 0;
}

.mega-inner {
    display: flex;
}

.mega-visual {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.mega-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__item.has-dropdown:hover .mega-visual img {
    transform: scale(1.1);
}

.mega-visual__text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    z-index: 2;
}

.mega-visual__text span {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.mega-visual__text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
}

.mega-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.mega-list {
    width: 55%;
    padding: 32px;
}

.mega-list li {
    margin-bottom: 12px;
}

.mega-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--c-text);
    background: transparent;
}

.mega-list a:hover {
    background: var(--gradient-glass);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.1);
}

.mega-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-sm);
}

.mega-list strong {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.mega-list small {
    display: block;
    color: var(--c-text-light);
    font-size: 12px;
}

.mobile-menu-icon {
    display: none;
}

/* =========================================
   Page Top Button
   ========================================= */
.page-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 999;
}

.page-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.page-top-btn:hover {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-light) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.page-top-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.page-top-btn__icon {
    animation: topArrowPulse 1.5s ease-in-out infinite;
}

@keyframes topArrowPulse {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* =========================================
   Hero Dynamic Section
   ========================================= */
.hero-dynamic {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    margin-top: var(--header-height);
}

.hero-slider,
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-item {
    background-size: cover;
    background-position: center;
    animation: ultimateCrossfade 20s infinite;
    filter: brightness(0.6) contrast(1.1);
}

.slide-ec {
    background-image: url('assets/images/hero-ec.jpg');
    animation-delay: 0s;
}

.slide-food {
    background-image: url('assets/images/hero-restaurant.jpg');
    animation-delay: 10s;
    opacity: 0;
}

@keyframes ultimateCrossfade {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    45% {
        opacity: 1;
        transform: scale(1.03);
    }

    50% {
        opacity: 0;
        transform: scale(1.05);
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-text {
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-tag {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 28px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 10px;
    opacity: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-indicator .line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 999px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* =========================================
   Section Base Styles
   ========================================= */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--c-bg);
}

.section-header-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--c-text) 0%, var(--c-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-all-link {
    color: var(--c-text-light);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-en);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.view-all-link:hover {
    color: var(--c-accent);
    gap: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-desc {
    color: var(--c-text-light);
    margin-top: 12px;
    font-size: 16px;
}

/* =========================================
   Solution Section (2事業×3列)
   ========================================= */
.section-solution {
    padding: 100px 0 0 0;
    background-color: var(--c-white);
}

.modern-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 60px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 32px;
}

.header-title-box {
    flex-shrink: 0;
}

.section-title-jp {
    display: block;
    font-size: 13px;
    color: var(--c-text-light);
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-head-desc {
    flex-grow: 1;
    max-width: 800px;
}

.section-solution .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--c-text-light);
    font-weight: 500;
}

@media (max-width: 991px) {
    .modern-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    .section-head-desc {
        max-width: 100%;
    }
}

.solution-rows-wrapper {
    display: flex;
    flex-direction: column;
}

.solution-row {
    padding: 80px 0;
    transition: background-color var(--transition-base);
}

.solution-row.bg-dark {
    background-color: var(--c-text);
    color: var(--c-white);
}

.solution-row.bg-light {
    background-color: #F8F7F3;
    /* 上品な少し明るめなベージュ・アイボリー */
    color: var(--c-text);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.solution-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-item__visual {
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: rgba(0, 0, 0, 0.05);
}

.solution-row.bg-dark .solution-item__visual {
    background-color: rgba(255, 255, 255, 0.05);
}

.solution-item__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dummy-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    background: #e2e2e2;
    font-family: var(--font-en);
}

.solution-row.bg-dark .dummy-img-placeholder {
    background: #1E293B;
    color: #64748B;
}

.solution-item__tag {
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-en);
    color: #ef5a28;
    /* ブランドオレンジに近い色 */
    margin-bottom: 12px;
    display: block;
    letter-spacing: 0.05em;
}

.solution-row.bg-dark .solution-item__tag {
    color: #ff7a45;
    /* ダークモード用に明るく調整 */
}

.solution-item__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.5;
}

.solution-row.bg-dark .solution-item__title {
    color: var(--c-white);
}

.solution-item__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.8;
}

.solution-item__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    gap: 8px;
    transition: all var(--transition-fast);
    margin-top: auto;
    width: fit-content;
}

.solution-row.bg-dark .btn-text-link {
    color: var(--c-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.solution-row.bg-light .btn-text-link {
    color: var(--c-text);
    border-bottom: 1px solid rgba(15, 23, 42, 0.3);
    padding-bottom: 4px;
}

.btn-text-link:hover {
    gap: 12px;
    color: #ef5a28;
    border-color: #ef5a28;
}

.solution-row.bg-dark .btn-text-link:hover {
    color: #ff7a45;
    border-color: #ff7a45;
}

/* Orange Button */
.btn--orange {
    background: #ef5a28;
    color: var(--c-white);
    border: none;
}

.btn--orange:hover {
    background: #d14a1c;
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(239, 90, 40, 0.2);
}

.btn--orange::before {
    background: rgba(255, 255, 255, 0.15);
}

/* =========================================
   Premium News List Section
   ========================================= */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.news-row {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.news-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.news-row:hover {
    background: rgba(16, 185, 129, 0.04);
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.news-row:hover::before {
    transform: scaleY(1);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.news-meta time {
    font-family: var(--font-en);
    font-weight: 600;
    color: var(--c-text-light);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.label {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: var(--font-en);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.label--news {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    color: #0284C7;
}

.label--ec {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1D4ED8;
}

.label--food {
    background: linear-gradient(135deg, #FEF08A 0%, #FDE047 100%);
    color: #A16207;
}

.label--corp {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #4B5563;
}

.news-body {
    flex-grow: 1;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    transition: color var(--transition-base);
    color: var(--c-text);
}

.news-row:hover .news-title {
    color: var(--c-accent);
}

.news-arrow {
    opacity: 0;
    transform: translateX(-16px);
    transition: all var(--transition-base);
    color: var(--c-accent);
    font-weight: 700;
    font-size: 20px;
    margin-left: 16px;
}

.news-row:hover .news-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   Premium Business Cards Grid
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: var(--c-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
    border: 1px solid rgba(16, 185, 129, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-hard);
    border-color: var(--c-accent);
}

.card:hover::before {
    opacity: 0.02;
}

.card-img-area {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img-area img {
    transform: scale(1.08) rotate(1deg);
}

.card-icon {
    position: absolute;
    bottom: 10px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    transition: all var(--transition-base);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.card-body {
    padding: 44px 28px 28px;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.card-body p {
    font-size: 14px;
    color: var(--c-text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    flex: 1;
}

.link-arrow {
    color: var(--c-accent);
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-en);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-base);
    width: fit-content;
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition-base);
}

.link-arrow:hover {
    gap: 12px;
}

.link-arrow:hover::after {
    transform: translateX(3px);
}

/* =========================================
   Company Section
   ========================================= */
.company-wrapper {
    display: flex;
    gap: 72px;
    align-items: flex-start;
}

.company-info {
    flex: 1;
}

.company-visual {
    flex: 1;
    position: relative;
}

.company-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-base);
    width: 100%;
}

.company-visual:hover img {
    transform: scale(1.01) rotate(0.5deg);
}

.company-visual::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -28px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.08;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.company-dl {
    border-top: 1px solid var(--c-bg);
}

.dl-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--c-bg);
    transition: all var(--transition-base);
}

.dl-row:hover {
    background: var(--c-bg-light);
    padding-left: 12px;
}

.dl-row dt {
    width: 120px;
    font-weight: 700;
    color: var(--c-text);
    font-size: 14px;
    flex-shrink: 0;
}

.dl-row dd {
    flex: 1;
    color: var(--c-text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* =========================================
   CTA Section - Powerful & Engaging
   ========================================= */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cta-text {
    margin-bottom: 40px;
    opacity: 0.95;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   Responsive Design - Tablet
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .company-wrapper {
        gap: 56px;
    }

    .section {
        padding: 80px 0;
    }
}

/* =========================================
   Responsive Design - Mobile
   ========================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header - Mobile */
    .header__inner {
        padding: 0 12px;
    }

    .logo {
        margin-right: auto;
        padding-right: 0;
        flex-shrink: 0;
    }

    .nav__list {
        display: none;
        gap: 24px;
        flex-direction: column;
        position: fixed !important;
        /* Fixed relative to header/viewport */
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100vw !important;
        /* Force full screen width */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    }

    .nav__list.active {
        display: flex;
    }

    .nav__item {
        padding: 16px 0;
    }

    .mega-menu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 12px;
        border-radius: 0;
    }

    .mega-inner {
        flex-direction: column;
    }

    .mega-visual {
        width: 100%;
        height: 200px;
    }

    .mega-list {
        width: 100%;
        padding: 16px 0;
    }

    .mobile-menu-icon {
        display: block;
        cursor: pointer;
        width: 26px;
        height: 18px;
        position: relative;
        z-index: 1005;
        /* stay above menu */
        margin-left: 10px;
    }

    .mobile-menu-icon span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--c-text);
        border-radius: 999px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }

    .mobile-menu-icon span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-icon span:nth-child(2) {
        top: 9px;
        width: 75%;
        /* Modern asymmetric look */
        right: 0;
        left: auto;
    }

    .mobile-menu-icon span:nth-child(3) {
        bottom: 0;
    }

    .mobile-menu-icon.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-icon.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .mobile-menu-icon.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Page Top Button - Mobile */
    .page-top-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .page-top-btn__icon {
        width: 18px;
        height: 18px;
    }

    /* Hero */
    .hero-dynamic {
        height: 85vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-desc {
        margin-bottom: 32px;
        font-size: 14px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    /* News Section */
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 48px;
    }

    .news-meta {
        min-width: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 10px;
    }

    .news-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
    }

    .news-arrow {
        align-self: flex-start;
        margin-left: 0;
        margin-top: 8px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Company */
    .company-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .company-visual {
        width: 100%;
        order: -1;
    }

    .company-visual::after {
        display: none;
    }

    /* CTA */
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: -24px;
        right: 20px;
    }

    .card-body {
        padding: 40px 20px 20px;
    }

    .dl-row {
        flex-direction: column;
        gap: 6px;
        padding: 16px 0;
    }

    .dl-row dt {
        width: 100%;
    }

    /* 言語セレクタのコンテナ */
    .lang-selector-container {
        display: flex;
        align-items: center;
        margin-right: 20px;
        /* お問い合わせボタンとの間隔 */
    }

    /* GTranslate自体のスタイル微調整（必要に応じて） */
    .gtranslate_wrapper {
        display: inline-block;
        vertical-align: middle;
    }

    /* ヘッダー全体の並びを整える（header__innerにflexが効いている前提） */
    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* =========================================
   Accessibility & Performance
   ========================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: var(--c-accent);
    color: var(--c-white);
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .cta-section {
        display: none;
    }
}

/* =========================================
   Mobile Header Fixes
   ========================================= */
@media (max-width: 992px) {
    .header .btn--primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .header .lang-selector-container {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    body .header__inner {
        padding: 0 12px !important;
        justify-content: space-between !important;
        display: flex !important;
        gap: 8px !important;
    }

    body .logo {
        margin-right: auto !important;
        flex-shrink: 1 !important;
        min-width: 100px !important;
    }

    body .site-logo-img,
    body .custom-logo {
        max-height: 40px !important;
        width: auto !important;
    }

    /* Hide the desktop nav items but keep the container for logic */
    .nav {
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    body .header .lang-selector-container {
        display: none !important;
    }

    .header .btn--primary {
        padding: 6px 10px !important;
        font-size: 11px !important;
        min-width: unset !important;
        width: auto !important;
        white-space: nowrap !important;
    }

    .header .btn-phone {
        padding: 4px !important;
        margin-right: 0 !important;
        margin-left: 4px !important;
    }

    .header .btn-phone__icon {
        width: 20px !important;
        height: 20px !important;
    }

    .mobile-menu-icon {
        margin-left: 10px !important;
        width: 26px !important;
        height: 18px !important;
        padding-right: 2px !important;
        /* Ensure content box doesn't hit edge */
    }
}

/* Fix mobile menu z-index and visibility overflow */
.nav__list.active {
    box-shadow: var(--shadow-medium);
    z-index: 1000;
}

/* =========================================
   Company Page Fixes (page-company.php)
   ========================================= */
.p-company-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: var(--c-bg-light);
    position: relative;
    overflow: hidden;
}

.p-company-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.p-company-hero__subtitle {
    font-size: 1.2rem;
    color: var(--c-text-light);
}

.p-company-hero__background {
    display: none;
    /* Hidden unless needed */
}

/* Company Message */
.p-company-message {
    padding: 80px 20px;
}

.p-company-message__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-company-message__layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.p-company-message__image {
    flex: 1;
    max-width: 400px;
}

.p-company-message__img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    display: block;
}

.p-company-message__content {
    flex: 1.5;
}

.p-company-message__title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.p-company-message__text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--c-text);
}

.p-company-message__signature {
    margin-top: 40px;
    font-size: 1.1rem;
    text-align: right;
}

/* Company MVV */
.p-company-mvv {
    background: var(--gradient-primary);
    padding: 80px 20px;
    color: var(--c-white);
    text-align: center;
}

.p-company-mvv__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-company-mvv__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.p-company-mvv__description {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

.p-company-mvv-card {
    background: var(--c-white);
    color: var(--c-text);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

.p-company-mvv-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.p-company-mvv-card__label {
    font-size: 1rem;
    color: var(--c-accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.p-company-mvv-card__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.p-company-mvv-card__content {
    color: var(--c-text-light);
    line-height: 1.6;
}

/* Company Overview List */
.p-company-overview {
    padding: 80px 20px;
}

.p-company-overview__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-company-overview__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.p-company-overview__layout {
    display: flex;
    gap: 60px;
}

.p-company-overview__content {
    flex: 2;
}

.p-company-overview__sidebar {
    flex: 1;
}

.p-company-overview__list {
    border-top: 2px solid var(--c-bg-light);
}

.p-company-overview__term {
    font-weight: 700;
    padding: 20px 0 10px;
    color: var(--c-text);
}

.p-company-overview__definition {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-bg-light);
    color: var(--c-text-light);
}

.p-company-overview__box {
    background: var(--c-bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.p-company-overview__box-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 10px;
    display: inline-block;
}

.p-company-overview__box-list {
    list-style: disc inside;
    color: var(--c-text-light);
}

.p-company-overview__box-list li {
    margin-bottom: 8px;
}

/* Company Timeline */
.p-company-history {
    padding: 80px 20px;
    background: var(--c-bg-light);
}

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

.p-company-history__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.p-company-history__subtitle {
    text-align: center;
    color: var(--c-text-light);
    margin-bottom: 60px;
}

.p-company-history__item {
    display: flex;
    margin-bottom: 30px;
    background: var(--c-white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.p-company-history__year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
    width: 120px;
    flex-shrink: 0;
}

.p-company-history__event-desc {
    color: var(--c-text);
}

/* Company CTA */
.p-company-cta {
    padding: 80px 20px;
    text-align: center;
}

.p-company-cta__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.p-company-cta__text {
    font-size: 1.1rem;
    color: var(--c-text-light);
    margin-bottom: 40px;
}

.p-company-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.p-company-cta__button {
    padding: 15px 40px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background: var(--c-accent);
    color: var(--c-white);
    transition: all var(--transition-base);
}

.p-company-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.p-company-cta__button--secondary {
    background: var(--c-white);
    color: var(--c-text);
    border: 2px solid var(--c-bg-light);
}

/* Responsive adjustments for company page */
@media (max-width: 768px) {
    .p-company-message__layout {
        flex-direction: column;
    }

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

    .p-company-overview__layout {
        flex-direction: column;
    }

    .p-company-history__item {
        flex-direction: column;
    }

    .p-company-history__year {
        margin-bottom: 10px;
    }

    .p-company-cta__buttons {
        flex-direction: column;
    }
}

/* =========================================
   Footer Area (Banners & Information)
   ========================================= */

/* Footer Banners Area */
.footer-banners {
    display: flex;
    width: 100%;
    margin-top: 0;
    /* Changed from 60px to remove gap */
    gap: 0;
    /* Ensure no gaps between flex items */
}

.footer-banner {
    flex: 1;
    position: relative;
    padding: 80px 40px;
    text-decoration: none;
    color: var(--c-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.footer-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.default-bg-dark {
    background-color: #222;
}

.default-bg-gray {
    background-color: #444;
}

.footer-banner:hover .footer-banner-bg {
    transform: scale(1.05);
}

.footer-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
}

.banner-en {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.banner-ja {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.banner-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.banner-btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s;
}

.footer-banner:hover .banner-btn {
    background: #fff;
    color: #000;
}

.footer-banner:hover .banner-btn .arrow {
    transform: translateX(5px);
}

/* Main Footer Container */
.site-footer-modern {
    background-color: #000;
    color: #fff;
    padding: 0 5% 40px;
    /* Changed from 80px top to 0 */
    font-family: var(--font-primary);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-top: 60px;
    /* internal top spacing since site-footer-modern has 0 top padding */
    padding-bottom: 60px;
    margin-bottom: 30px;
}

/* Footer Lang Switcher */
.footer-lang-switcher {
    display: flex;
    gap: 10px;
}

.footer-lang-switcher button {
    background: transparent;
    border: 1px solid #555;
    color: #888;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-lang-switcher button.active,
.footer-lang-switcher button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Footer Nav Middle */
.footer-middle {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-left: auto;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 15px;
}

.footer-nav-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-nav-col ul li a:hover {
    color: #fff;
}

.footer-nav-col ul li.section-title {
    color: var(--c-accent);
    /* オリーブ系からオレンジ系(accent)へ */
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 25px;
}

.footer-nav-col--offset ul li.section-title {
    margin-bottom: 25px;
}

/* Footer Bottom Links */
.site-footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Flex layout tweaks */
.site-footer-modern {
    background-color: #000;
    color: #fff;
    padding: 0 8% 40px;
    /* Changed from 80px top to 0 */
}

.footer-content-modern {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.footer-left {
    min-width: 300px;
}

.footer-middle {
    flex: 2;
    padding: 0 40px;
    justify-content: flex-start;
    gap: 60px;
}

.footer-nav-col--offset {
    margin-top: 0;
}

/* Media Queries */
@media (max-width: 1024px) {
    .footer-content-modern {
        flex-direction: column;
    }

    .footer-middle {
        width: 100%;
        margin-left: 0;
        padding: 0;
        margin-top: 40px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .footer-right {
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .footer-banners {
        flex-direction: column;
        margin-top: 0;
    }

    .footer-banner {
        min-height: 300px;
        width: 100%;
    }

    .site-footer-bottom-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* =========================================
   EC CONSULTING PAGE STYLES
   ECコンサルティングページ専用スタイル
   ========================================= */

/* HERO SECTION */
.p-ec-consulting-hero {
    background: var(--c-bg-light);
    padding: 80px 40px;
    margin-top: calc(var(--header-height) + 20px);
}

.p-ec-consulting-hero__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.p-ec-consulting-hero__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-ec-consulting-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--c-text);
    margin: 0;
}

.p-ec-consulting-hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--c-text-light);
    margin: 0;
}

.p-ec-consulting-hero__button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-medium);
    width: fit-content;
}

.p-ec-consulting-hero__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hard);
}

.p-ec-consulting-hero__background {
    position: relative;
    width: 100%;
    height: 500px;
}

.p-ec-consulting-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 1024px) {
    .p-ec-consulting-hero__wrapper {
        grid-template-columns: 1fr;
    }

    .p-ec-consulting-hero__title {
        font-size: 2.5rem;
    }

    .p-ec-consulting-hero__background {
        height: 350px;
    }
}

/* CONCERNS SECTION */
.p-ec-consulting-concerns {
    padding: 120px 40px;
    background: var(--c-white);
}

.p-ec-consulting-concerns__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-ec-consulting-concerns__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--c-text);
}

.p-ec-consulting-concerns__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.p-ec-consulting-concern-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--c-accent);
    transition: all var(--transition-base);
}

.p-ec-consulting-concern-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.p-ec-consulting-concern-item__text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
}

.p-ec-consulting-concerns__message {
    background: linear-gradient(135deg, var(--c-accent) 0%, #06B6D4 100%);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.p-ec-consulting-concerns__message p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.p-ec-consulting-concerns__message p:last-child {
    margin-bottom: 0;
}

/* FEATURES SECTION */
.p-ec-consulting-features {
    padding: 120px 40px;
    background: var(--c-bg-light);
}

.p-ec-consulting-features__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-ec-consulting-features__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--c-text);
}

.p-ec-consulting-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.p-ec-consulting-feature--reverse {
    grid-template-columns: 1fr 1fr;
}

.p-ec-consulting-feature--reverse .p-ec-consulting-feature__image {
    order: 2;
}

.p-ec-consulting-feature--reverse .p-ec-consulting-feature__content {
    order: 1;
}

.p-ec-consulting-feature__image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.p-ec-consulting-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.p-ec-consulting-feature:hover .p-ec-consulting-feature__image img {
    transform: scale(1.05);
}

.p-ec-consulting-feature__content {
    padding: 20px;
}

.p-ec-consulting-feature__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 20px;
}

.p-ec-consulting-feature__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--c-text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .p-ec-consulting-feature {
        grid-template-columns: 1fr;
    }

    .p-ec-consulting-feature--reverse {
        grid-template-columns: 1fr;
    }

    .p-ec-consulting-feature--reverse .p-ec-consulting-feature__image {
        order: unset;
    }

    .p-ec-consulting-feature--reverse .p-ec-consulting-feature__content {
        order: unset;
    }

    .p-ec-consulting-feature__image {
        height: 300px;
    }
}

/* SERVICES SECTION */
.p-ec-consulting-services {
    padding: 120px 40px;
    background: var(--c-white);
}

.p-ec-consulting-services__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-ec-consulting-services__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--c-text);
}

.p-ec-consulting-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.p-ec-consulting-service-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.p-ec-consulting-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--c-accent);
}

.p-ec-consulting-service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 15px;
    min-height: 60px;
}

.p-ec-consulting-service-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--c-text-light);
    margin: 0;
}

/* FLOW SECTION */
.p-ec-consulting-flow {
    padding: 120px 40px;
    background: var(--c-bg-light);
}

.p-ec-consulting-flow__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-ec-consulting-flow__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--c-text);
}

.p-ec-consulting-flow__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.p-ec-consulting-flow__steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent) 0%, transparent 50%, var(--c-accent-blue) 100%);
    z-index: 0;
    display: none;
}

@media (max-width: 768px) {
    .p-ec-consulting-flow__steps::before {
        display: none;
    }
}

.p-ec-consulting-flow-step {
    background: var(--c-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.p-ec-consulting-flow-step:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.p-ec-consulting-flow-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.p-ec-consulting-flow-step__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 15px;
}

.p-ec-consulting-flow-step__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--c-text-light);
    margin: 0;
}

/* PLATFORMS SECTION */
.p-ec-consulting-platforms {
    padding: 120px 40px;
    background: var(--c-white);
}

.p-ec-consulting-platforms__wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.p-ec-consulting-platforms__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--c-text);
}

.p-ec-consulting-platforms__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.p-ec-consulting-platform-item {
    background: linear-gradient(135deg, var(--c-accent) 0%, #06B6D4 100%);
    color: white;
    padding: 25px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.p-ec-consulting-platform-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.p-ec-consulting-platforms__note {
    font-size: 0.9rem;
    color: var(--c-text-light);
    margin: 0;
    font-style: italic;
}

/* FAQ SECTION */
.p-ec-consulting-faq {
    padding: 120px 40px;
    background: var(--c-bg-light);
}

.p-ec-consulting-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.p-ec-consulting-faq__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--c-text);
}

.p-ec-consulting-faq__items {
    display: grid;
    gap: 20px;
}

.p-ec-consulting-faq-item {
    background: var(--c-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--c-accent);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.p-ec-consulting-faq-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(4px);
}

.p-ec-consulting-faq-item__question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 15px;
    margin-top: 0;
}

.p-ec-consulting-faq-item__answer {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--c-text-light);
    margin: 0;
}

/* FINAL CTA SECTION */
.p-ec-consulting-cta {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.p-ec-consulting-cta__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.p-ec-consulting-cta__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.p-ec-consulting-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.p-ec-consulting-cta__text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    color: #e0e0e0;
}

.p-ec-consulting-cta__button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-medium);
    width: fit-content;
}

.p-ec-consulting-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hard);
}

.p-ec-consulting-cta__note {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    font-style: italic;
}

.p-ec-consulting-cta__image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.p-ec-consulting-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .p-ec-consulting-cta__wrapper {
        grid-template-columns: 1fr;
    }

    .p-ec-consulting-cta__title {
        font-size: 1.5rem;
    }

    .p-ec-consulting-cta__image {
        height: 300px;
    }
}

/* =========================================
   PRODUCT CROWDFUNDING PAGE STYLES
   ========================================= */

/* WHY SECTION */
.p-pcf-why {
    padding: 4rem 2rem;
    background-color: var(--c-bg-light);
}

.p-pcf-why__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-pcf-why__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.4;
}

.p-pcf-why__content {
    text-align: center;
    margin-bottom: 2rem;
}

.p-pcf-why__text p {
    font-size: 1rem;
    color: var(--c-text-light);
    line-height: 1.6;
}

.p-pcf-why__points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.p-pcf-why__point {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-pcf-why__point:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.p-pcf-why__point-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 0.5rem;
}

.p-pcf-why__point-description {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.6;
}

.p-pcf-why__closing {
    text-align: center;
}

.p-pcf-why__closing p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-accent-blue);
    line-height: 1.6;
}

/* FEATURES SECTION */
.p-pcf-features {
    padding: 4rem 2rem;
    background-color: white;
}

.p-pcf-features__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-pcf-features__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.4;
}

.p-pcf-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.p-pcf-feature-card {
    background-color: var(--c-bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.p-pcf-feature-card:hover {
    box-shadow: var(--shadow-medium);
}

.p-pcf-feature-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.p-pcf-feature-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 1rem;
}

.p-pcf-feature-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-pcf-feature-card__description {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.6;
}

.p-pcf-feature-card__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.p-pcf-feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICES SECTION */
.p-pcf-services {
    padding: 4rem 2rem;
    background-color: var(--c-bg-light);
}

.p-pcf-services__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-pcf-services__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.4;
}

.p-pcf-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.p-pcf-service-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--c-accent-blue);
}

.p-pcf-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.p-pcf-service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 1rem;
}

.p-pcf-service-card__description {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.6;
}

/* FLOW SECTION */
.p-pcf-flow {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(175, 187, 61, 0.05) 100%);
}

.p-pcf-flow__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-pcf-flow__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.4;
}

.p-pcf-flow__steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.p-pcf-flow__step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.p-pcf-flow__step-number {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.p-pcf-flow__step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 0.5rem;
}

.p-pcf-flow__step-description {
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.5;
}

.p-pcf-flow__arrow {
    width: 30px;
    height: 3px;
    background-color: var(--c-accent-blue);
    position: relative;
    flex-shrink: 0;
}

.p-pcf-flow__arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--c-accent-blue);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

@media (max-width: 768px) {
    .p-pcf-flow__steps {
        flex-direction: column;
        gap: 1rem;
    }

    .p-pcf-flow__arrow {
        display: none;
    }
}

/* FAQ SECTION */
.p-pcf-faq {
    padding: 4rem 2rem;
    background-color: white;
}

.p-pcf-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.p-pcf-faq__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 3rem;
    text-align: center;
}

.p-pcf-faq__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-pcf-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.p-pcf-faq__item-details {
    list-style: none;
}

.p-pcf-faq__item-details summary {
    cursor: pointer;
    padding: 1.5rem;
    background-color: var(--c-bg-light);
    font-weight: 600;
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
    user-select: none;
}

.p-pcf-faq__item-details summary:hover {
    background-color: #f0f4f8;
}

.p-pcf-faq__item-details summary::after {
    content: '▼';
    display: inline-block;
    font-size: 0.8rem;
    color: var(--c-accent-blue);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.p-pcf-faq__item-details[open] summary::after {
    transform: rotate(180deg);
}

.p-pcf-faq__question {
    font-size: 1rem;
    color: var(--c-text);
    flex: 1;
}

.p-pcf-faq__answer {
    padding: 1.5rem;
    background-color: white;
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
}

/* CTA SECTION */
.p-pcf-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--c-accent-blue) 0%, var(--gradient-primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.p-pcf-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(100px, -100px);
    z-index: 0;
}

.p-pcf-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.p-pcf-cta__wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.p-pcf-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.p-pcf-cta__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.p-pcf-cta__button {
    display: inline-block;
    background-color: white;
    color: var(--c-accent-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.p-pcf-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .p-pcf-why__title,
    .p-pcf-features__title,
    .p-pcf-services__title,
    .p-pcf-flow__title,
    .p-pcf-faq__title {
        font-size: 1.5rem;
    }

    .p-pcf-why {
        padding: 3rem 1.5rem;
    }

    .p-pcf-features {
        padding: 3rem 1.5rem;
    }

    .p-pcf-services {
        padding: 3rem 1.5rem;
    }

    .p-pcf-flow {
        padding: 3rem 1.5rem;
    }

    .p-pcf-faq {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {

    .p-pcf-why__title,
    .p-pcf-features__title,
    .p-pcf-services__title,
    .p-pcf-flow__title,
    .p-pcf-faq__title,
    .p-pcf-cta__title {
        font-size: 1.3rem;
    }

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

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

    .p-pcf-cta {
        padding: 3rem 1.5rem;
    }

    .p-pcf-cta__title {
        font-size: 1.3rem;
    }

    .p-pcf-cta__description {
        font-size: 1rem;
    }

    .p-pcf-cta__button {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* =========================================
   FOOD CROWDFUNDING PAGE STYLES
   ========================================= */

.p-food-cf-container {
    overflow-x: hidden;
}

/* ========================================
   HERO SECTION
   ======================================== */
.p-food-cf-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    overflow: hidden;
}

.p-food-cf-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.p-food-cf-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.p-food-cf-hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.p-food-cf-hero__cta {
    display: flex;
    gap: 20px;
}

.p-food-cf-hero__background {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.p-food-cf-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   WHY SECTION
   ======================================== */
.p-food-cf-why {
    padding: 80px 40px;
    background: #f8f9fa;
}

.p-food-cf-why__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-food-cf-why__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.p-food-cf-why__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.p-food-cf-why__text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

.p-food-cf-why__text ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.p-food-cf-why__text li {
    margin-bottom: 10px;
    color: #333;
}

.p-food-cf-why__image {
    border-radius: 16px;
    overflow: hidden;
}

.p-food-cf-why__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.p-food-cf-features {
    padding: 80px 40px;
    background: white;
}

.p-food-cf-features__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-food-cf-features__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.p-food-cf-features__card {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(26, 26, 46, 0.1);
}

.p-food-cf-features__card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.15);
    transform: translateY(-5px);
}

.p-food-cf-features__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.p-food-cf-features__card-description {
    line-height: 1.7;
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.p-food-cf-services {
    padding: 80px 40px;
    background: #f8f9fa;
}

.p-food-cf-services__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-food-cf-services__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.p-food-cf-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
}

.p-food-cf-services__item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.p-food-cf-services__item:hover {
    box-shadow: 0 15px 50px rgba(26, 26, 46, 0.1);
    transform: translateY(-8px);
}

.p-food-cf-services__item-visual {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e9ecef;
}

.p-food-cf-services__item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.p-food-cf-services__item:hover .p-food-cf-services__item-visual img {
    transform: scale(1.05);
}

.p-food-cf-services__item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 20px 15px;
    color: #1a1a2e;
}

.p-food-cf-services__item-description {
    margin: 0 20px 25px;
    line-height: 1.7;
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.p-food-cf-process {
    padding: 80px 40px;
    background: white;
}

.p-food-cf-process__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-food-cf-process__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.p-food-cf-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.p-food-cf-process__step {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.p-food-cf-process__step:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.1);
}

.p-food-cf-process__step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-food-cf-process__step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.p-food-cf-process__step-description {
    line-height: 1.7;
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.p-food-cf-gallery {
    padding: 80px 40px;
    background: #fdfdfd;
}

.p-food-cf-gallery__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.p-food-cf-gallery__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.p-food-cf-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.p-food-cf-gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-food-cf-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.p-food-cf-gallery__item:hover img {
    transform: scale(1.05);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.p-food-cf-faq {
    padding: 80px 40px;
    background: #f8f9fa;
}

.p-food-cf-faq__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-food-cf-faq__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.p-food-cf-faq__items {
    display: grid;
    gap: 20px;
}

.p-food-cf-faq__item {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.p-food-cf-faq__question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fafafa;
    transition: all 0.3s ease;
}

.p-food-cf-faq__question:hover {
    background: #f0f0f0;
}

.p-food-cf-faq__question h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    flex: 1;
}

.p-food-cf-faq__toggle {
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 20px;
    flex-shrink: 0;
}

.p-food-cf-faq__toggle::before,
.p-food-cf-faq__toggle::after {
    content: '';
    position: absolute;
    background: #ff6b35;
}

.p-food-cf-faq__toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.p-food-cf-faq__toggle::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

.p-food-cf-faq__item.active .p-food-cf-faq__toggle::after {
    opacity: 0;
}

.p-food-cf-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.p-food-cf-faq__answer p {
    padding: 0 25px 25px;
    margin: 0;
    line-height: 1.7;
    color: #666;
}

.p-food-cf-faq__item.active .p-food-cf-faq__answer {
    max-height: 500px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.p-food-cf-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.p-food-cf-cta__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.p-food-cf-cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.p-food-cf-cta__text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .p-food-cf-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 30px;
    }

    .p-food-cf-hero__title {
        font-size: 1.8rem;
    }

    .p-food-cf-hero__background {
        height: 300px;
    }

    .p-food-cf-why__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-food-cf-features__grid,
    .p-food-cf-services__grid {
        grid-template-columns: 1fr;
    }

    .p-food-cf-process__steps {
        grid-template-columns: 1fr;
    }

    .p-food-cf-features__title,
    .p-food-cf-services__title,
    .p-food-cf-process__title,
    .p-food-cf-faq__title,
    .p-food-cf-cta__title {
        font-size: 1.6rem;
    }

    .p-food-cf-hero,
    .p-food-cf-why,
    .p-food-cf-features,
    .p-food-cf-services,
    .p-food-cf-process,
    .p-food-cf-faq,
    .p-food-cf-cta {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .p-food-cf-hero__title {
        font-size: 1.5rem;
    }

    .p-food-cf-hero__subtitle {
        font-size: 1rem;
    }

    .p-food-cf-features__grid,
    .p-food-cf-services__grid,
    .p-food-cf-process__steps {
        gap: 20px;
    }
}

/* =========================================
   FOOD CONSULTING PAGE - Modern Premium Styles
   飲食コンサルティング事業ページ 
   ========================================= */

/* --------- HERO SECTION --------- */
.p-food-consulting-hero {
    position: relative;
    padding: 120px 32px;
    background: linear-gradient(180deg, rgba(175, 187, 61, 0.05) 0%, transparent 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.p-food-consulting-hero__wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.p-food-consulting-hero__content {
    z-index: 10;
}

.p-food-consulting-hero__title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--c-text);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.p-food-consulting-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--c-text-light);
    margin-bottom: 40px;
}

.p-food-consulting-hero__button {
    display: inline-block;
    padding: 16px 42px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.p-food-consulting-hero__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.p-food-consulting-hero__background {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

.p-food-consulting-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------- CONCERNS SECTION --------- */
.p-food-consulting-concerns {
    padding: 100px 32px;
    background: var(--c-white);
}

.p-food-consulting-concerns__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-concerns__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.p-food-consulting-concerns__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.p-food-consulting-concern-item {
    padding: 24px 32px;
    background: var(--c-bg-light);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.p-food-consulting-concern-item:hover {
    background: linear-gradient(135deg, rgba(175, 187, 61, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    transform: translateX(8px);
}

.p-food-consulting-concern-item__text {
    color: var(--c-text);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.p-food-consulting-concerns__message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(175, 187, 61, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-lg);
}

.p-food-consulting-concerns__message p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 16px;
}

.p-food-consulting-concerns__message p:last-child {
    margin-bottom: 0;
}

/* --------- FEATURES SECTION --------- */
.p-food-consulting-features {
    padding: 100px 32px;
    background: linear-gradient(180deg, var(--c-bg-light) 0%, var(--c-white) 100%);
}

.p-food-consulting-features__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-features__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.p-food-consulting-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.p-food-consulting-feature-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.p-food-consulting-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.p-food-consulting-feature-card__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--c-bg-light);
}

.p-food-consulting-feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.p-food-consulting-feature-card:hover .p-food-consulting-feature-card__image img {
    transform: scale(1.05);
}

.p-food-consulting-feature-card__heading {
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--c-text);
    padding: 24px 24px 12px;
    font-weight: 600;
}

.p-food-consulting-feature-card__text {
    padding: 0 24px 24px;
    font-size: 0.95625rem;
    line-height: 1.7;
    color: var(--c-text-light);
}

/* --------- SERVICES SECTION --------- */
.p-food-consulting-services {
    padding: 100px 32px;
    background: var(--c-white);
}

.p-food-consulting-services__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-services__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.p-food-consulting-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.p-food-consulting-service-item {
    padding: 32px;
    background: linear-gradient(135deg, var(--c-bg-light) 0%, transparency 100%);
    border: 1px solid rgba(175, 187, 61, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.p-food-consulting-service-item:hover {
    border-color: var(--c-accent);
    background: linear-gradient(135deg, rgba(175, 187, 61, 0.1) 0%, transparent 100%);
}

.p-food-consulting-service-item__title {
    font-size: 1.375rem;
    line-height: 1.4;
    color: var(--c-text);
    margin-bottom: 16px;
    font-weight: 600;
}

.p-food-consulting-service-item__text {
    font-size: 0.95625rem;
    line-height: 1.75;
    color: var(--c-text-light);
}

/* --------- PROCESS SECTION --------- */
.p-food-consulting-process {
    padding: 100px 32px;
    background: linear-gradient(180deg, var(--c-bg-light) 0%, var(--c-white) 100%);
}

.p-food-consulting-process__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-process__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.p-food-consulting-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.p-food-consulting-process-step {
    background: var(--c-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all var(--transition-base);
    border-top: 4px solid var(--c-accent);
}

.p-food-consulting-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.p-food-consulting-process-step__number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.p-food-consulting-process-step__title {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--c-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.p-food-consulting-process-step__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--c-text-light);
}

/* --------- FAQ SECTION --------- */
.p-food-consulting-faq {
    padding: 100px 32px;
    background: var(--c-white);
}

.p-food-consulting-faq__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-faq__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.p-food-consulting-faq__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.p-food-consulting-faq-item {
    border: 1px solid rgba(175, 187, 61, 0.3);
    border-radius: var(--radius-md);
    padding: 0;
    transition: all var(--transition-base);
}

.p-food-consulting-faq-item[open] {
    border-color: var(--c-accent);
    background: rgba(175, 187, 61, 0.05);
}

.p-food-consulting-faq-item__summary {
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--c-text);
    font-weight: 500;
}

.p-food-consulting-faq-item__summary:hover {
    background: rgba(175, 187, 61, 0.05);
}

.p-food-consulting-faq-item__summary::before {
    content: '+';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    text-align: center;
    line-height: 24px;
    color: var(--c-accent);
    font-weight: bold;
    transition: transform var(--transition-base);
}

.p-food-consulting-faq-item[open] .p-food-consulting-faq-item__summary::before {
    content: '−';
    transform: rotate(180deg);
}

.p-food-consulting-faq-item__answer {
    padding: 0 32px 24px;
    font-size: 0.95625rem;
    line-height: 1.75;
    color: var(--c-text-light);
    border-top: 1px solid rgba(175, 187, 61, 0.2);
    margin: 0;
}

/* --------- PORTFOLIO SECTION --------- */
.p-food-consulting-portfolio {
    padding: 100px 32px;
    background: linear-gradient(180deg, var(--c-bg-light) 0%, var(--c-white) 100%);
}

.p-food-consulting-portfolio__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-portfolio__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.p-food-consulting-portfolio__item {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(175, 187, 61, 0.1);
}

.p-food-consulting-portfolio-item__tag {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 12px;
}

.p-food-consulting-portfolio-item__location {
    font-size: 1rem;
    color: var(--c-text-light);
    margin-bottom: 8px;
}

.p-food-consulting-portfolio-item__tags {
    font-size: 0.875rem;
    color: var(--c-text-lighter);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.p-food-consulting-portfolio-item__image {
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.p-food-consulting-portfolio-item__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.p-food-consulting-portfolio-item__description {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--c-bg-light);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--radius-md);
}

.p-food-consulting-portfolio-item__description p {
    font-size: 0.95625rem;
    line-height: 1.75;
    color: var(--c-text);
    margin-bottom: 0;
}

.p-food-consulting-portfolio-item__support {
    margin-bottom: 32px;
}

.p-food-consulting-portfolio-item__support-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 16px;
}

.p-food-consulting-portfolio-item__support-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-left: 0;
}

.p-food-consulting-portfolio-item__support-list li {
    font-size: 0.95625rem;
    line-height: 1.6;
    color: var(--c-text-light);
    padding-left: 24px;
    position: relative;
}

.p-food-consulting-portfolio-item__support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-accent);
    font-weight: bold;
}

.p-food-consulting-portfolio-item__info {
    margin-bottom: 32px;
}

.p-food-consulting-portfolio-item__info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 16px;
}

.p-food-consulting-portfolio-item__info-detail p {
    font-size: 0.95625rem;
    line-height: 1.8;
    color: var(--c-text-light);
    margin-bottom: 8px;
}

.p-food-consulting-portfolio-item__info-detail p:last-child {
    margin-bottom: 0;
}

.p-food-consulting-portfolio-item__links {
    margin-bottom: 24px;
}

.p-food-consulting-portfolio-item__links-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 16px;
}

.p-food-consulting-portfolio-item__links-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.p-food-consulting-portfolio-item__links-list li {
    list-style: none;
}

.p-food-consulting-portfolio-item__links-list a {
    font-size: 0.95625rem;
    color: var(--c-accent);
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    padding-bottom: 4px;
}

.p-food-consulting-portfolio-item__links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    transition: width var(--transition-base);
}

.p-food-consulting-portfolio-item__links-list a:hover::after {
    width: 100%;
}

.p-food-consulting-portfolio-item__footnote {
    font-size: 0.875rem;
    color: var(--c-text-lighter);
    font-style: italic;
    border-top: 1px solid rgba(175, 187, 61, 0.2);
    padding-top: 24px;
}

/* --------- FINAL CTA SECTION --------- */
.p-food-consulting-cta {
    padding: 100px 32px;
    background: linear-gradient(135deg, var(--c-accent) 0%, #06B6D4 100%);
    text-align: center;
}

.p-food-consulting-cta__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-food-consulting-cta__title {
    font-size: 2.25rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

.p-food-consulting-cta__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.p-food-consulting-cta__button {
    display: inline-block;
    padding: 16px 42px;
    background: white;
    color: var(--c-accent);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-medium);
    font-size: 1rem;
}

.p-food-consulting-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
}

.p-food-consulting-cta__footer-note {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.p-food-consulting-cta__footer-note p {
    font-size: 0.95625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .p-food-consulting-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-food-consulting-hero__title {
        font-size: 2.25rem;
    }

    .p-food-consulting-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .p-food-consulting-process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .p-food-consulting-portfolio__item {
        padding: 32px;
    }

    .p-food-consulting-portfolio-item__support-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .p-food-consulting-hero {
        padding: 80px 16px;
        min-height: auto;
    }

    .p-food-consulting-hero__title {
        font-size: 1.875rem;
    }

    .p-food-consulting-concerns {
        padding: 60px 16px;
    }

    .p-food-consulting-concerns__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .p-food-consulting-features {
        padding: 60px 16px;
    }

    .p-food-consulting-features__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .p-food-consulting-features__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p-food-consulting-services {
        padding: 60px 16px;
    }

    .p-food-consulting-services__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .p-food-consulting-process {
        padding: 60px 16px;
    }

    .p-food-consulting-process__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .p-food-consulting-process__steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p-food-consulting-faq {
        padding: 60px 16px;
    }

    .p-food-consulting-faq__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .p-food-consulting-faq__items {
        max-width: 100%;
    }

    .p-food-consulting-portfolio {
        padding: 60px 16px;
    }

    .p-food-consulting-portfolio__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .p-food-consulting-portfolio__item {
        padding: 24px;
    }

    .p-food-consulting-cta {
        padding: 60px 16px;
    }

    .p-food-consulting-cta__title {
        font-size: 1.5rem;
    }

    .p-food-consulting-cta__text {
        font-size: 0.95625rem;
    }
}

/* =========================================
   MODERN LAYOUT REDESIGN FOR FOOD CONSULTING
   ========================================= */

/* CONCERNS 2-COLUMN */
.p-food-consulting-concerns__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media(max-width: 900px) {
    .p-food-consulting-concerns__layout {
        grid-template-columns: 1fr;
    }
}

.p-food-consulting-concerns__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-food-consulting-concern-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.p-food-consulting-concern-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.p-food-consulting-concern-card__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.p-food-consulting-concern-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.p-food-consulting-concern-card__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.p-food-consulting-concerns__main-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FEATURES 2-COLUMN HEADER */
.p-food-consulting-features__header-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media(max-width: 900px) {
    .p-food-consulting-features__header-layout {
        grid-template-columns: 1fr;
    }
}

.p-food-consulting-features__header-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* SERVICES CARDS */
.p-food-consulting-services-grid--modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.p-food-consulting-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.p-food-consulting-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.p-food-consulting-service-card__image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.p-food-consulting-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-food-consulting-service-card:hover .p-food-consulting-service-card__image img {
    transform: scale(1.05);
}

.p-food-consulting-service-card__content {
    padding: 30px;
    flex-grow: 1;
}

.p-food-consulting-service-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.p-food-consulting-service-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* PROCESS CARDS */
.p-food-consulting-process__steps--modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.p-food-consulting-process-step--modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--c-accent);
}

.p-food-consulting-process-step__image--modern {
    aspect-ratio: 16/9;
}

.p-food-consulting-process-step__image--modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-food-consulting-process-step__content--modern {
    padding: 24px;
}

/* CTA LAYOUT */
.p-food-consulting-cta__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    color: #333;
    margin-bottom: 60px;
}

@media(max-width: 900px) {
    .p-food-consulting-cta__layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.p-food-consulting-cta__image img {
    width: 100%;
    border-radius: 12px;
}

.p-food-consulting-cta__content {
    text-align: left;
}

@media(max-width: 900px) {
    .p-food-consulting-cta__content {
        text-align: center;
    }
}

.p-food-consulting-cta__title {
    color: #1a1a2e !important;
}

.p-food-consulting-cta__text {
    color: #555 !important;
}

.p-food-consulting-cta__footer-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.p-food-consulting-cta__footer-image img {
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
}

/* =========================================
   MODERN LAYOUT REDESIGN FOR PRODUCT CROWDFUNDING
   ========================================= */

/* HERO SECTION CUSTOM */
.p-cf-hero--modern {
    padding: 120px 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-cf-hero__title {
    color: #0F172A !important;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.p-cf-hero__subtitle {
    color: #334155 !important;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.p-cf-hero__description {
    color: #475569 !important;
    font-size: 1.125rem;
    line-height: 1.8;
}

.p-cf-hero__cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(175, 187, 61, 0.3);
    margin-top: 20px;
}

.p-cf-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(175, 187, 61, 0.4);
    background: #9ba835;
}

/* WHY SECTION */
.p-pcf-why--modern {
    padding: 80px 32px;
    background: #fcfcfc;
}

.p-pcf-why__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-pcf-why__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

@media(max-width: 900px) {
    .p-pcf-why__layout {
        grid-template-columns: 1fr;
    }
}

.p-pcf-why__image-col img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.p-pcf-why__intro {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--c-accent);
    margin-bottom: 30px;
    line-height: 1.6;
}

.p-pcf-why__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.p-pcf-why-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--c-accent);
}

.p-pcf-why-item__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.p-pcf-why-item__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.p-pcf-why__closing {
    font-size: 1.15rem;
    font-weight: bold;
    color: #1a1a2e;
    background: #eef2f5;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

/* FEATURES SECTION */
.p-pcf-features--modern {
    padding: 80px 32px;
    background: #fff;
}

.p-pcf-features__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.p-pcf-features__grid--modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.p-pcf-feature-card--modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.p-pcf-feature-card--modern:hover {
    transform: translateY(-8px);
}

.p-pcf-feature-card__image--modern {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.p-pcf-feature-card__image--modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-pcf-feature-card__content--modern {
    padding: 30px;
    flex-grow: 1;
}

.p-pcf-feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.p-pcf-feature-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* SERVICES SECTION */
.p-pcf-services--modern {
    padding: 80px 32px;
    background: #f8f9fa;
}

.p-pcf-services__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.p-pcf-services__grid--modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

.p-pcf-service-card--modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.p-pcf-service-card__image--modern {
    aspect-ratio: 4/3;
}

.p-pcf-service-card__image--modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-pcf-service-card__content--modern {
    padding: 24px;
}

.p-pcf-service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.p-pcf-service-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* FLOW SECTION */
.p-pcf-flow--modern {
    padding: 80px 32px;
    background: #fff;
}

.p-pcf-flow__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.p-pcf-flow__steps--modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.p-pcf-flow-step--modern {
    background: #fefefe;
    border-radius: 12px;
    border-top: 4px solid var(--c-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.p-pcf-flow-step__image--modern {
    aspect-ratio: 16/9;
}

.p-pcf-flow-step__image--modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-pcf-flow-step__content--modern {
    padding: 20px;
}

.p-pcf-flow-step__number {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.p-pcf-flow-step__title {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.p-pcf-flow-step__desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* FAQ 2-COLUMN */
.p-pcf-faq--modern {
    padding: 80px 32px;
    background: #f9f9fc;
}

.p-pcf-faq__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-pcf-faq__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.p-pcf-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media(max-width: 900px) {
    .p-pcf-faq__layout {
        grid-template-columns: 1fr;
    }
}

.p-pcf-faq__items-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-pcf-faq__image-col img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.p-pcf-faq__item-details {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.p-pcf-faq__question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.p-pcf-faq__question::-webkit-details-marker {
    display: none;
}

.p-pcf-faq__question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-accent);
    font-weight: bold;
}

.p-pcf-faq__item-details[open] .p-pcf-faq__question:after {
    content: '-';
}

.p-pcf-faq__answer {
    padding: 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    background: #fafafa;
}

/* CTA 2-COLUMN */
.p-pcf-cta--modern {
    padding: 80px 32px;
    background: #fff;
}

.p-pcf-cta__layout {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

@media(max-width: 900px) {
    .p-pcf-cta__layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.p-pcf-cta__image-col img {
    width: 100%;
    border-radius: 16px;
}

.p-pcf-cta__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
    line-height: 1.4;
}

.p-pcf-cta__desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.p-pcf-cta__button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(175, 187, 61, 0.3);
    margin-top: 10px;
}

.p-pcf-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(175, 187, 61, 0.4);
    background: #9ba835;
}

/* ================================================================
   MODERN LAYOUT REDESIGN FOR EC CONSULTING
   ================================================================ */

/* HERO SECTION CUSTOM */
.p-ecc-hero--modern {
    padding: 120px 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.p-ecc-hero__wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.p-ecc-hero__content {
    z-index: 2;
}

.p-ecc-hero__title {
    color: #0F172A !important;
    font-size: 3.5rem;
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 700;
}

.p-ecc-hero__subtitle {
    color: #334155 !important;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.p-ecc-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-ecc-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
    opacity: 0.95;
}

.p-ecc-hero__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.p-ecc-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (max-width: 900px) {
    .p-ecc-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-ecc-hero__title {
        font-size: 2.2rem;
    }
}


/* CONCERNS SECTION CUSTOM (Grid of cards) */
.p-ecc-concerns--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-ecc-concerns__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-ecc-concerns__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 50px;
    font-weight: 700;
}

.p-ecc-concerns__grid--modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.p-ecc-concern-card--modern {
    background: #fff;
    border-left: 4px solid var(--c-accent, #AFBB3D);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p-ecc-concern-card--modern:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.p-ecc-concern-card__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f1f5f9;
}

.p-ecc-concern-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-ecc-concern-card__text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

.p-ecc-concerns__message--modern {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.p-ecc-concerns__message--modern p {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.p-ecc-concerns__message--modern p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .p-ecc-concerns__grid--modern {
        grid-template-columns: 1fr;
    }

    .p-ecc-concerns__message--modern {
        padding: 30px 20px;
    }
}


/* FEATURES SECTION CUSTOM (3-column Cards) */
.p-ecc-features--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-ecc-features__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-ecc-features__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 60px;
    font-weight: 700;
}

.p-ecc-features__grid--modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.p-ecc-feature-card--modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.p-ecc-feature-card--modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-ecc-feature-card__img--modern {
    width: 100%;
    height: 220px;
}

.p-ecc-feature-card__img--modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-ecc-feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    padding: 30px 30px 15px;
    margin: 0;
}

.p-ecc-feature-card__text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    padding: 0 30px 30px;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .p-ecc-features__grid--modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .p-ecc-features__grid--modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* SERVICES SECTION CUSTOM (2x2 Grid) */
.p-ecc-services--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-ecc-services__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-ecc-services__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 60px;
    font-weight: 700;
}

.p-ecc-services__grid--modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.p-ecc-service-card--modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.p-ecc-service-card--modern:hover {
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.p-ecc-service-card__image {
    width: 40%;
    min-height: 100%;
}

.p-ecc-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-ecc-service-card__content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-ecc-service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.p-ecc-service-card__text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .p-ecc-services__grid--modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .p-ecc-service-card--modern {
        flex-direction: column;
    }

    .p-ecc-service-card__image {
        width: 100%;
        height: 200px;
    }

    .p-ecc-service-card__content {
        width: 100%;
    }
}


/* FLOW SECTION CUSTOM */
.p-ecc-flow--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-ecc-flow__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-ecc-flow__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 40px;
    font-weight: 700;
}

.p-ecc-flow__intro-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.p-ecc-flow__intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.p-ecc-flow__steps--modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-ecc-flow-step--modern {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: transform 0.2s ease;
    border-left: 4px solid transparent;
}

.p-ecc-flow-step--modern:hover {
    transform: translateX(8px);
    border-left-color: var(--c-accent, #AFBB3D);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.p-ecc-flow-step__number--modern {
    background: linear-gradient(135deg, var(--c-accent, #AFBB3D) 0%, #8b9921 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.p-ecc-flow-step__title {
    font-size: 1.25rem;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 12px;
}

.p-ecc-flow-step__text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .p-ecc-flow-step--modern {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .p-ecc-flow-step__number--modern {
        margin-top: 0;
    }
}


/* PLATFORMS SECTION CUSTOM */
.p-ecc-platforms--modern {
    padding: 80px 32px;
    background: #1e293b;
    color: #fff;
}

.p-ecc-platforms__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-ecc-platforms__title {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.p-ecc-platforms__layout {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-ecc-platforms__image {
    width: 40%;
    flex-shrink: 0;
}

.p-ecc-platforms__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.p-ecc-platforms__content {
    width: 60%;
}

.p-ecc-platforms__list {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: 300;
}

.p-ecc-platforms__note {
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .p-ecc-platforms__layout {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }

    .p-ecc-platforms__image,
    .p-ecc-platforms__content {
        width: 100%;
    }
}


/* FAQ SECTION CUSTOM */
.p-ecc-faq--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-ecc-faq__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-ecc-faq__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 60px;
    font-weight: 700;
}

.p-ecc-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.p-ecc-faq__image {
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-ecc-faq__image img {
    width: 100%;
    height: auto;
    display: block;
}

.p-ecc-faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.p-ecc-faq-item__summary {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 50px;
}

.p-ecc-faq-item__summary::-webkit-details-marker {
    display: none;
}

.p-ecc-faq-item__summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--c-accent, #AFBB3D);
    transition: transform 0.3s;
}

.p-ecc-faq-item[open] .p-ecc-faq-item__summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.p-ecc-faq-item__answer {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    margin-top: -10px;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .p-ecc-faq__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-ecc-faq__image {
        display: none;
        /* Hide image on mobile for brevity */
    }
}


/* CTA SECTION CUSTOM (2-column layout) */
.p-ecc-cta--modern {
    padding: 80px 32px 100px;
    background: #fff;
}

.p-ecc-cta__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-ecc-cta__layout {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.p-ecc-cta__content {
    width: 60%;
}

.p-ecc-cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

.p-ecc-cta__desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.p-ecc-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-ecc-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
}

.p-ecc-cta__image {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
}

.p-ecc-cta__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

@media (max-width: 900px) {
    .p-ecc-cta__layout {
        flex-direction: column-reverse;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .p-ecc-cta__content,
    .p-ecc-cta__image {
        width: 100%;
    }
}

/* ================================================================
   MODERN LAYOUT REDESIGN FOR FOOD OWN (自社飲食事業)
   ================================================================ */

/* HERO SECTION */
.p-fo-hero--modern {
    padding: 120px 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-fo-hero__wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.p-fo-hero__title {
    color: #0F172A !important;
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.p-fo-hero__subtitle {
    color: #334155 !important;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.p-fo-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-fo-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
    opacity: 0.95;
}

.p-fo-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-fo-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (max-width: 900px) {
    .p-fo-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-fo-hero__title {
        font-size: 2.2rem;
    }
}


/* CONCEPT SECTION */
.p-fo-concept--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-fo-concept__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-fo-concept__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.p-fo-concept__image img {
    width: 100%;
    height: auto;
    display: block;
}

.p-fo-concept__title {
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.p-fo-concept__text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

@media (max-width: 900px) {
    .p-fo-concept__layout {
        grid-template-columns: 1fr;
    }
}


/* BRAND MINDSET SECTION */
.p-fo-mindset--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-fo-mindset__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-fo-mindset__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.p-fo-mindset__title {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.p-fo-mindset__text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.p-fo-mindset__list {
    margin: 0 0 30px 0;
    padding-left: 20px;
}

.p-fo-mindset__list li {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

.p-fo-mindset__list li::before {
    content: "・";
    color: var(--c-accent, #AFBB3D);
    position: absolute;
    left: -20px;
    font-weight: bold;
}

.p-fo-mindset__image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .p-fo-mindset__layout {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}


/* SPACE / FOOD DIRECTION */
.p-fo-direction--modern {
    padding: 100px 32px;
    background: #1e293b;
    color: #f8fafc;
}

.p-fo-direction__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-fo-direction__box {
    text-align: center;
}

.p-fo-direction__title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 700;
}

.p-fo-direction__text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-fo-direction__col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .p-fo-direction__text-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}


/* REPRESENTATIVE EXPERIENCE */
.p-fo-experience--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-fo-experience__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-fo-experience__image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.p-fo-experience__title {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 30px;
    font-weight: 700;
}

.p-fo-experience__text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .p-fo-experience__layout {
        grid-template-columns: 1fr;
    }
}


/* CURRENT PROGRESS */
.p-fo-progress--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-fo-progress__wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.p-fo-progress__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 50px;
    font-weight: 700;
}

.p-fo-progress__intro {
    text-align: center;
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 40px;
    line-height: 1.8;
}

.p-fo-progress__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.p-fo-progress-item {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.p-fo-progress-item:hover {
    transform: translateY(-4px);
    border-color: var(--c-accent, #AFBB3D);
}

.p-fo-progress-item__num {
    background: var(--c-accent, #AFBB3D);
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.p-fo-progress-item__txt {
    font-weight: 600;
    color: #0F172A;
    font-size: 1.1rem;
}

.p-fo-progress__outro {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #1e293b;
    border: 1px solid rgba(6, 182, 212, 0.2);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* POSITIONING */
.p-fo-position--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-fo-position__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-fo-position__title {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 30px;
    font-weight: 700;
}

.p-fo-position__text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.p-fo-position__image img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .p-fo-position__layout {
        grid-template-columns: 1fr;
    }
}


/* FAQ SECTION */
.p-fo-faq--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-fo-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.p-fo-faq__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 50px;
    font-weight: 700;
}

.p-fo-faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.p-fo-faq-item__summary {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 50px;
}

.p-fo-faq-item__summary::-webkit-details-marker {
    display: none;
}

.p-fo-faq-item__summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--c-accent, #AFBB3D);
    transition: transform 0.3s;
}

.p-fo-faq-item[open] .p-fo-faq-item__summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.p-fo-faq-item__answer {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    margin-top: -10px;
    padding-top: 20px;
}


/* CTA / NOTICE SECTION */
.p-fo-cta--modern {
    padding: 80px 32px 100px;
    background: #fff;
}

.p-fo-cta__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-fo-cta__layout {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.p-fo-cta__content {
    width: 60%;
}

.p-fo-cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

.p-fo-cta__desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.p-fo-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-fo-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
}

.p-fo-cta__image {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
}

.p-fo-cta__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

@media (max-width: 900px) {
    .p-fo-cta__layout {
        flex-direction: column-reverse;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .p-fo-cta__content,
    .p-fo-cta__image {
        width: 100%;
    }
}

/* ================================================================
   MODERN LAYOUT REDESIGN FOR EC / DISTRIBUTION BUSINESS (EC / 流通事業)
   ================================================================ */

/* --- Shared Utilities --- */
.p-ecdist-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.p-ecdist-section-header__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.p-ecdist-section-header__sub {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 16px;
    font-weight: 600;
}

.p-ecdist-section-header__desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.p-ecdist-section-header--light .p-ecdist-section-header__title,
.p-ecdist-section-header--light .p-ecdist-section-header__sub {
    color: #f1f5f9;
}

.p-ecdist-section-header--light .p-ecdist-section-header__desc {
    color: #94a3b8;
}

/* --- HERO --- */
.p-ecdist-hero--modern {
    padding: 120px 32px 100px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-ecdist-hero__wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.p-ecdist-hero__tag {
    display: inline-block;
    background: var(--c-accent, #AFBB3D);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.p-ecdist-hero__title {
    color: #0F172A !important;
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.p-ecdist-hero__subtitle {
    color: #334155 !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.p-ecdist-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-ecdist-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
}

.p-ecdist-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-ecdist-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (max-width: 900px) {
    .p-ecdist-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-ecdist-hero__title {
        font-size: 2.2rem;
    }
}

/* --- CHANNELS --- */
.p-ecdist-channels--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-ecdist-channels__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-ecdist-channel-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-ecdist-channel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.p-ecdist-channel-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.p-ecdist-channel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-ecdist-channel-card:hover .p-ecdist-channel-card__image img {
    transform: scale(1.05);
}

.p-ecdist-channel-card__body {
    padding: 24px;
}

.p-ecdist-channel-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(175, 187, 61, 0.12);
    color: #6b7a15;
    margin-bottom: 12px;
}

.p-ecdist-channel-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.p-ecdist-channel-card__list {
    padding: 0;
    margin: 0 0 8px 0;
    list-style: none;
}

.p-ecdist-channel-card__list li {
    font-size: 0.95rem;
    color: #475569;
    padding: 4px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.p-ecdist-channel-card__note {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .p-ecdist-channels__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .p-ecdist-channels__grid {
        grid-template-columns: 1fr;
    }
}

/* --- SUPPORT --- */
.p-ecdist-support--modern {
    padding: 100px 32px;
    background: #1e293b;
}

.p-ecdist-support__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-ecdist-support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 36px 30px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.p-ecdist-support-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.p-ecdist-support-card__num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--c-accent, #AFBB3D);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.8;
}

.p-ecdist-support-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.p-ecdist-support-card__text {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.p-ecdist-support-card__list {
    padding: 0;
    margin: 0 0 16px 0;
    list-style: none;
}

.p-ecdist-support-card__list li {
    font-size: 0.95rem;
    color: #cbd5e1;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 18px;
    position: relative;
}

.p-ecdist-support-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--c-accent, #AFBB3D);
}

.p-ecdist-support-card__note {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.p-ecdist-support-card__image-wrap {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.p-ecdist-support-card__image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .p-ecdist-support__grid {
        grid-template-columns: 1fr;
    }
}

/* --- CATEGORIES --- */
.p-ecdist-categories--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-ecdist-categories__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-ecdist-categories__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.p-ecdist-categories__image img {
    width: 100%;
    height: auto;
    display: block;
}

.p-ecdist-categories__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.p-ecdist-categories__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-accent, #AFBB3D);
    margin-bottom: 24px;
}

.p-ecdist-categories__text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.p-ecdist-categories__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.p-ecdist-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 900px) {
    .p-ecdist-categories__layout {
        grid-template-columns: 1fr;
    }
}

/* --- PARTNERSHIP --- */
.p-ecdist-partner--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-ecdist-partner__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-ecdist-partner-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-ecdist-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.p-ecdist-partner-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.p-ecdist-partner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-ecdist-partner-card:hover .p-ecdist-partner-card__image img {
    transform: scale(1.05);
}

.p-ecdist-partner-card__body {
    padding: 28px;
}

.p-ecdist-partner-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.p-ecdist-partner-card__text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .p-ecdist-partner__grid {
        grid-template-columns: 1fr;
    }
}

/* --- CASE STUDY --- */
.p-ecdist-case--modern {
    padding: 100px 32px;
    background: #0f172a;
}

.p-ecdist-case__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-ecdist-case__header {
    text-align: center;
    margin-bottom: 60px;
}

.p-ecdist-case__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--c-accent, #AFBB3D);
    border: 1px solid var(--c-accent, #AFBB3D);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.p-ecdist-case__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.p-ecdist-case__subtitle {
    font-size: 1rem;
    color: #64748b;
}

.p-ecdist-case__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.p-ecdist-case__images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-ecdist-case__img-main {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.p-ecdist-case__img-sub {
    border-radius: 12px;
    width: 70%;
    height: auto;
    align-self: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.p-ecdist-case__block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.p-ecdist-case__block-title {
    font-size: 1rem;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.p-ecdist-case__block p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
}

.p-ecdist-case__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-ecdist-case__list li {
    font-size: 0.95rem;
    color: #94a3b8;
    padding: 5px 0 5px 18px;
    position: relative;
}

.p-ecdist-case__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-accent, #AFBB3D);
}

.p-ecdist-case__list--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.p-ecdist-case__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.p-ecdist-case__stat {
    background: rgba(175, 187, 61, 0.08);
    border: 1px solid rgba(175, 187, 61, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.p-ecdist-case__stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--c-accent, #AFBB3D);
    line-height: 1.1;
    margin-bottom: 8px;
}

.p-ecdist-case__stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.p-ecdist-case__channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-ecdist-case__channels>div {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px 16px;
}

.p-ecdist-case__channels strong {
    display: block;
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.p-ecdist-case__channels p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.p-ecdist-case__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.p-ecdist-case__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #94a3b8 !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.p-ecdist-case__link:hover {
    background: rgba(175, 187, 61, 0.1);
    border-color: rgba(175, 187, 61, 0.3);
    color: #cbd5e1 !important;
}

.p-ecdist-case__wholesale-note {
    background: rgba(175, 187, 61, 0.06);
    border: 1px solid rgba(175, 187, 61, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
}

.p-ecdist-case__wholesale-note p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 8px;
}

.p-ecdist-case__wholesale-note p:last-child {
    margin-bottom: 0;
}

.p-ecdist-case__wholesale-note strong {
    color: #cbd5e1;
}

@media (max-width: 900px) {
    .p-ecdist-case__layout {
        grid-template-columns: 1fr;
    }

    .p-ecdist-case__img-sub {
        width: 50%;
    }

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

/* --- FAQ --- */
.p-ecdist-faq--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-ecdist-faq__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.p-ecdist-faq__title {
    text-align: center;
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 50px;
    font-weight: 700;
}

.p-ecdist-faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.p-ecdist-faq-item__summary {
    padding: 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.p-ecdist-faq-item__summary::-webkit-details-marker {
    display: none;
}

.p-ecdist-faq-item__summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--c-accent, #AFBB3D);
    transition: transform 0.3s;
}

.p-ecdist-faq-item[open] .p-ecdist-faq-item__summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.p-ecdist-faq-item__answer {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

/* --- CTA --- */
.p-ecdist-cta--modern {
    padding: 80px 32px 100px;
    background: #fff;
}

.p-ecdist-cta__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-ecdist-cta__layout {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.p-ecdist-cta__content {
    width: 60%;
}

.p-ecdist-cta__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

.p-ecdist-cta__desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.p-ecdist-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-ecdist-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
}

.p-ecdist-cta__image {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
}

.p-ecdist-cta__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

@media (max-width: 900px) {
    .p-ecdist-cta__layout {
        flex-direction: column-reverse;
        padding: 40px 20px;
        gap: 40px;
        text-align: center;
    }

    .p-ecdist-cta__content,
    .p-ecdist-cta__image {
        width: 100%;
    }
}

/* ================================================================
   MODERN LAYOUT REDESIGN FOR COMPANY PAGE (会社概要)
   ================================================================ */

/* --- Shared Section Header --- */
.p-comp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.p-comp-section-header__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.p-comp-section-header__desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.p-comp-section-header--light .p-comp-section-header__title {
    color: #f1f5f9;
}

.p-comp-section-header--light .p-comp-section-header__desc {
    color: #94a3b8;
}

/* --- 1. HERO --- */
.p-comp-hero--modern {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.p-comp-hero__bg {
    position: absolute;
    inset: 0;
}

.p-comp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-comp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 41, 59, 0.55) 100%);
}

.p-comp-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 32px;
}

.p-comp-hero__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--c-accent, #AFBB3D);
    border: 1px solid var(--c-accent, #AFBB3D);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.p-comp-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 16px;
    line-height: 1.2;
}

.p-comp-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 400;
}

/* --- 2. CEO MESSAGE --- */
.p-comp-ceo--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-comp-ceo__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-comp-ceo__layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 70px;
    align-items: flex-start;
}

.p-comp-ceo__image {
    position: relative;
}

.p-comp-ceo__image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.p-comp-ceo__name-en {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

.p-comp-ceo__name-role {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.p-comp-ceo__content {
    padding-top: 10px;
}

.p-comp-ceo__eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--c-accent, #AFBB3D);
    margin-bottom: 10px;
}

.p-comp-ceo__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 30px;
}

.p-comp-ceo__body p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.85;
    margin-bottom: 18px;
}

.p-comp-ceo__sig {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-comp-ceo__sig-company {
    font-size: 0.85rem;
    color: #94a3b8;
}

.p-comp-ceo__sig-name {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}

@media (max-width: 900px) {
    .p-comp-ceo__layout {
        grid-template-columns: 1fr;
    }

    .p-comp-ceo__image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* --- 3. MEMBER CARDS --- */
.p-comp-members--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-comp-members__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-comp-member-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.p-comp-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.p-comp-member-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: var(--c-accent, #AFBB3D);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-comp-member-card__photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #e2e8f0;
}

.p-comp-member-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
    display: block;
}

.p-comp-member-card:hover .p-comp-member-card__photo img {
    transform: scale(1.05);
}

.p-comp-member-card__body {
    padding: 24px;
}

.p-comp-member-card__role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(175, 187, 61, 0.1);
    color: #6b7a15;
    margin-bottom: 10px;
}

.p-comp-member-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.4;
}

.p-comp-member-card__name small {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

.p-comp-member-card__text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.p-comp-member-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.p-comp-member-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b !important;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.p-comp-member-card__link:hover {
    background: rgba(175, 187, 61, 0.08);
    border-color: var(--c-accent, #AFBB3D);
    color: #334155 !important;
}

@media (max-width: 900px) {
    .p-comp-members__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .p-comp-members__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

/* --- 4. MVV --- */
.p-comp-mvv--modern {
    padding: 100px 32px;
    background: #1e293b;
}

.p-comp-mvv__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-comp-mvv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.p-comp-mvv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.p-comp-mvv-card__en {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--c-accent, #AFBB3D);
    margin-bottom: 16px;
}

.p-comp-mvv-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p-comp-mvv-card__text {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
}

.p-comp-mvv-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.p-comp-mvv-card__list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-comp-mvv-card__list strong {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.p-comp-mvv-card__list span {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .p-comp-mvv__grid {
        grid-template-columns: 1fr;
    }
}

/* --- 5. PHILOSOPHY --- */
.p-comp-philosophy--modern {
    padding: 100px 32px;
    background: #fff;
}

.p-comp-philosophy__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

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

.p-comp-philosophy__logo {
    height: auto;
    margin-bottom: 32px;
    display: block;
}

.p-comp-philosophy__headline {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.4;
}

.p-comp-philosophy__eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-accent, #AFBB3D);
    margin-bottom: 10px;
}

.p-comp-philosophy__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 28px;
}

.p-comp-philosophy__text-col p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .p-comp-philosophy__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- 6. COMPANY INFO --- */
.p-comp-info--modern {
    padding: 100px 32px;
    background: #f8fafc;
}

.p-comp-info__wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.p-comp-info__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: flex-start;
}

.p-comp-info__dl {
    background: #fff;
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.p-comp-info__dl-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.p-comp-info__dl-row:last-child {
    border-bottom: none;
}

.p-comp-info__dl-row dt {
    padding: 20px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    background: #f8fafc;
    display: flex;
    align-items: center;
    border-right: 1px solid #f1f5f9;
}

.p-comp-info__dl-row dd {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

.p-comp-info__dl-row dd a {
    color: var(--c-accent, #AFBB3D);
    text-decoration: none;
}

.p-comp-info__dl-row dd small {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

.p-comp-info__category {
    display: inline-block;
    background: rgba(175, 187, 61, 0.1);
    color: #6b7a15;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 6px;
}

.p-comp-info__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-comp-info__box {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.p-comp-info__box-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-accent, #AFBB3D);
    display: inline-block;
}

.p-comp-info__box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-comp-info__box-list li {
    font-size: 0.9rem;
    color: #475569;
    padding: 6px 0;
    border-bottom: 1px solid #f8fafc;
    padding-left: 14px;
    position: relative;
}

.p-comp-info__box-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--c-accent, #AFBB3D);
    font-size: 0.7rem;
}

@media (max-width: 900px) {
    .p-comp-info__layout {
        grid-template-columns: 1fr;
    }

    .p-comp-info__dl-row {
        grid-template-columns: 120px 1fr;
    }
}

/* --- 7. HISTORY TIMELINE --- */
.p-comp-history--modern {
    padding: 100px 32px;
    background: #0f172a;
}

.p-comp-history__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.p-comp-history__timeline {
    position: relative;
    padding-left: 40px;
}

.p-comp-history__timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.p-comp-history__item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: baseline;
    padding-bottom: 40px;
}

.p-comp-history__item:last-child {
    padding-bottom: 0;
}

.p-comp-history__dot {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--c-accent, #AFBB3D);
    box-shadow: 0 0 0 4px rgba(175, 187, 61, 0.15);
}

.p-comp-history__date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-accent, #AFBB3D);
    white-space: nowrap;
}

.p-comp-history__event {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .p-comp-history__item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* --- 8. CTA --- */
.p-comp-cta--modern {
    padding: 100px 32px;
    background: linear-gradient(135deg, rgba(175, 187, 61, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

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

.p-comp-cta__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.p-comp-cta__desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.p-comp-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.p-comp-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.p-comp-cta__btn--primary {
    background: var(--c-accent, #AFBB3D);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(175, 187, 61, 0.3);
}

.p-comp-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175, 187, 61, 0.4);
}

.p-comp-cta__btn--outline {
    background: transparent;
    color: #334155 !important;
    border: 2px solid #cbd5e1;
}

.p-comp-cta__btn--outline:hover {
    border-color: var(--c-accent, #AFBB3D);
    color: var(--c-accent, #AFBB3D) !important;
}