/* text-gold utility */ .text-gold { color: var(--gold-primary); }
/*
Theme Name: Yoru Portal Theme
Theme URI: https://yoruno.jp
Description: YORUNOポータル専用テーマ（SEO完全対応版 v15.0）
Author: YORUNO
Version: 15.0
*/

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --bg-primary: #050508;
    --gold-primary: #c9a86c;
    --gold-light: #e8d5b0;
    --gold-dark: #8a7348;
    --white: #ffffff;
    --gray-400: #888888;
    --gray-600: #2a2a2a;
    
    --font-jp: "Shippori Mincho", "Yu Mincho", serif;
    --font-en: "Montserrat", sans-serif;
    --font-body: "Noto Sans JP", sans-serif;
    
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { margin: 0 !important; padding: 0 !important; overflow-x: hidden; scroll-behavior: smooth; }
body {
    margin: 0 !important; padding: 0 !important;
    background-color: var(--bg-primary) !important;
    color: var(--white);
    font-family: var(--font-en);
    overflow-x: hidden; width: 100%; min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a { text-decoration: none !important; color: inherit !important; -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 2px; border-radius: 2px; }
button:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 2px; border-radius: 2px; }

.skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
    z-index: 10000; background: var(--gold-primary); color: #000; padding: 12px 24px;
    font-size: 1rem; font-weight: 700; text-decoration: none;
}
.skip-link:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; overflow: visible; }

body.admin-bar { margin-top: 32px !important; }
@media (max-width: 782px) { body.admin-bar { margin-top: 46px !important; } }

#yoruno-luxury-wrapper { position: relative; width: 100%; overflow: hidden; }
#main-content { display: block; margin: 0; padding: 0; }

/* ============================================
   Background Effects
   ============================================ */
.luxury-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
    background: linear-gradient(to bottom, #020204 0%, #080810 100%);
}
#star-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.bg-gradient-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; z-index: 0; }
.orb-1 { width: 800px; height: 800px; top: -300px; right: -200px; background: radial-gradient(circle, rgba(201, 168, 108, 0.3), transparent 70%); animation: floatOrb 30s ease-in-out infinite; }
.orb-2 { width: 600px; height: 600px; bottom: -10%; left: -100px; background: radial-gradient(circle, rgba(60, 80, 120, 0.3), transparent 70%); animation: floatOrb 40s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.1); } }



/* ============================================
   Header
   ============================================ */
.yoruno-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    height: 80px;
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    display: flex; justify-content: center;
}
.yoruno-header.scrolled {
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}
.header-container {
    width: 100%; max-width: 1600px; height: 100%;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.header-logo { display: flex; align-items: center; gap: 12px; z-index: 1002; position: relative; }
.logo-icon { width: 26px; height: 26px; color: var(--gold-primary); }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { font-size: 1.4rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; }

/* SP Service Tab Bar */
.sp-service-bar {
    display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
    .sp-service-bar {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 999;
        background: rgba(5, 5, 8, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(201, 168, 108, 0.15);
        padding: 0;
    }
    .sp-service-tab {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 0;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease, background 0.3s ease;
        text-decoration: none !important;
    }
    .sp-service-tab i {
        font-size: 0.85rem;
        color: var(--gold-primary);
    }
    .sp-service-tab:active {
        background: rgba(201, 168, 108, 0.1);
        color: #fff;
    }
    .sp-service-tab-cta {
        color: #06C755;
    }
    .sp-service-tab-cta i {
        color: #06C755;
    }

    /* ヒーローセクションのpadding-topを調整 */
    .hero-section {
        padding-top: 100px;
    }
}

/* PC Nav (hidden by default) */
.header-nav { display: none; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 0; position: relative; }
.nav-main { font-size: 0.9rem; font-weight: 600; color: #fff; }
.nav-sub { font-size: 0.6rem; color: #888; letter-spacing: 0.05em; }
.nav-item::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px; background: var(--gold-primary); transition: all 0.3s; transform: translateX(-50%); }
.nav-item:hover::after { width: 100%; }

.header-cta { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex; width: 44px; height: 44px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
    cursor: pointer; position: relative; z-index: 1002;
    align-items: center; justify-content: center;
    margin-left: auto;
}
.hamburger { width: 20px; height: 12px; position: relative; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 1px; background: #fff; transition: all 0.3s; }
.hamburger span:first-child { top: 0; }
.hamburger span:last-child { bottom: 0; }
.mobile-menu-btn.active .hamburger span:first-child { top: 5px; transform: rotate(45deg); background: var(--gold-primary); }
.mobile-menu-btn.active .hamburger span:last-child { bottom: 5px; transform: rotate(-45deg); background: var(--gold-primary); }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    z-index: 1001; opacity: 0; transition: opacity 0.4s; pointer-events: none;
    background: rgba(5, 5, 8, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; display: flex; }
.mobile-nav { width: 85%; max-width: 320px; display: flex; flex-direction: column; gap: 20px; text-align: center; }
.mobile-nav-item {
    padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(10px); opacity: 0; transition: 0.4s var(--ease-luxury);
}
.mobile-menu.active .mobile-nav-item { transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-text { font-size: 1.3rem; font-weight: 500; font-family: var(--font-jp); display: block; margin-bottom: 4px; }
.mobile-nav-sub { font-size: 0.65rem; color: var(--gold-primary); letter-spacing: 0.1em; }
.mobile-cta-btn {
    margin-top: 30px; padding: 15px; background: #06C755; color: #fff !important;
    font-weight: bold; border-radius: 99px; width: 100%; display: block;
    transform: translateY(10px); opacity: 0; transition: 0.4s; transition-delay: 0.3s;
}
.mobile-menu.active .mobile-cta-btn { transform: translateY(0); opacity: 1; }

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative; height: 100dvh;
    min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    padding: 100px 0 0; overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; text-align: center; padding: 0 20px; }

.hero-headline {
    font-family: var(--font-jp); font-weight: 600; line-height: 1.4; margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.headline-row { display: block; font-size: 3.5rem; opacity: 0; animation: fadeUp 1s var(--ease-luxury) forwards; }
.headline-row.row-accent {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(201, 168, 108, 0.3));
    animation-delay: 0.2s;
}

.hero-logo-display { margin-bottom: 40px; opacity: 0; animation: fadeUp 1s var(--ease-luxury) forwards 0.4s; }
.hero-yoruno {
    font-size: 8rem; font-weight: 700; letter-spacing: 0.1em;
    background: linear-gradient(135deg, #fff 20%, var(--gold-primary) 60%, var(--gold-dark) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(201, 168, 108, 0.4));
}

.hero-desc {
    font-size: 1.1rem; line-height: 2; color: #ccc; margin-bottom: 50px;
    opacity: 0; animation: fadeUp 1s var(--ease-luxury) forwards 0.6s;
}
.hero-desc strong { color: #fff; border-bottom: 1px solid var(--gold-primary); }

.hero-cta-group {
    display: flex; gap: 20px; justify-content: center;
    opacity: 0; animation: fadeUp 1s var(--ease-luxury) forwards 0.8s;
}
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 18px 45px;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.08em; border-radius: 99px;
    transition: 0.3s; cursor: pointer;
}
.hero-btn.primary { background: #06C755; color: #fff !important; box-shadow: 0 0 20px rgba(6, 199, 85, 0.3); will-change: transform, box-shadow; }
.hero-btn.primary:hover { background: #05b54b; transform: translateY(-3px) scale(1.02); box-shadow: 0 4px 30px rgba(6, 199, 85, 0.5), 0 0 60px rgba(6, 199, 85, 0.15); }
.hero-btn.secondary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: #fff !important; will-change: transform, border-color; }
.hero-btn.secondary:hover { border-color: var(--gold-primary); color: var(--gold-primary) !important; background: rgba(201, 168, 108, 0.1); transform: translateY(-3px); box-shadow: 0 4px 20px rgba(201, 168, 108, 0.1); }

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

.scroll-indicator {
    position: absolute; bottom: 100px; left: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 15px; opacity: 0.7;
}
.scroll-line {
    width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-primary), transparent);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--gold-primary); animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 50%, 100% { top: 100%; } }
.scroll-text { font-size: 0.6rem; letter-spacing: 0.2em; color: #888; writing-mode: vertical-rl; }

/* Marquee */
.hero-marquee {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.02); border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); z-index: 10;
}
.marquee-inner { padding: 18px 0; }
.marquee-track { display: flex; animation: marquee 15s linear infinite; }
.marquee-item {
    display: flex; align-items: center; gap: 30px; padding: 0 40px;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.6);
    white-space: nowrap; text-transform: uppercase;
}
.marquee-item span { color: var(--gold-primary); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   Content Sections
   ============================================ */
.luxury-container { position: relative; z-index: 2; }

.section { padding: 100px 60px; position: relative; z-index: 2; }
.section-header { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 60px; text-align: center; }
.section-num { font-size: 1rem; color: var(--gold-primary); letter-spacing: 0.3em; font-weight: 600; }
.section-title { font-family: var(--font-jp); font-size: 2.5rem; color: #fff; font-weight: 600; }
.section-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-primary), transparent); margin-top: 4px; }

.about-content { max-width: 1400px; margin: 0 auto; text-align: center; }
.about-headline { font-size: 2.5rem; margin-bottom: 50px; font-family: var(--font-jp); font-weight: 500; }
.about-headline .accent { color: var(--gold-primary); text-shadow: 0 0 15px rgba(201, 168, 108, 0.3); }
.about-text { color: #aaa; line-height: 2.2; max-width: 700px; margin: 0 auto; font-size: 1rem; }

.strength-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
.strength-card {
    padding: 45px 30px; background: rgba(201, 168, 108, 0.03);
    border: 1px solid rgba(201, 168, 108, 0.12); border-radius: 4px;
    transition: background 0.5s var(--ease-luxury), border-color 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
    text-align: center;
}
.strength-card:hover {
    background: rgba(201, 168, 108, 0.08);
    border-color: rgba(201, 168, 108, 0.35);
    box-shadow: 0 15px 50px rgba(201, 168, 108, 0.12), 0 0 30px rgba(201, 168, 108, 0.05);
    transform: translateY(-5px);
}
.strength-icon { font-size: 2.2rem; margin-bottom: 22px; }
.strength-icon i { font-size: 2.2rem; color: var(--gold-primary); filter: drop-shadow(0 0 8px rgba(201, 168, 108, 0.3)); }
.strength-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0 0 14px; font-family: var(--font-body); }
.strength-desc { color: #999; font-size: 0.88rem; margin: 0; line-height: 1.9; }

/* Services Grid (legacy - kept for reference) */
.services-intro { text-align: center; color: #ccc; margin-bottom: 60px; font-size: 1rem; line-height: 2; font-weight: 500; }

/* ============================================
   Showcase Layout (New)
   ============================================ */
.service-showcase {
    display: flex; flex-direction: column; gap: 30px;
    max-width: 1200px; margin: 0 auto 30px;
}
.showcase-item {
    display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px; overflow: hidden;
    transition: all 0.5s var(--ease-luxury);
    min-height: 360px;
    will-change: transform, box-shadow;
}
.showcase-item:hover {
    border-color: rgba(201, 168, 108, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 108, 0.05);
}
.showcase-image {
    position: relative; overflow: hidden;
    background: #050508;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.showcase-reverse .showcase-image {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.showcase-image img {
    width: 100%; height: auto; max-height: 100%;
    object-fit: contain; object-position: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform 0.6s var(--ease-luxury), filter 0.3s ease, box-shadow 0.4s ease;
    opacity: 1;
    filter: brightness(1.05);
}
.showcase-item:hover .showcase-image img {
    transform: scale(1.02); opacity: 1;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(201, 168, 108, 0.06);
}
.showcase-num {
    position: absolute; top: 20px; left: 20px;
    font-size: 0.7rem; color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em; font-weight: 600;
}
.showcase-text {
    padding: 50px 45px;
    display: flex; flex-direction: column; justify-content: center;
}
.showcase-icon {
    margin-bottom: 20px;
}
.showcase-icon i {
    font-size: 2rem; color: var(--gold-primary);
    filter: drop-shadow(0 0 10px rgba(201, 168, 108, 0.3));
}
.showcase-title {
    font-family: var(--font-jp); font-size: 2rem; color: #fff;
    margin-bottom: 8px; font-weight: 700;
}
.showcase-sub {
    font-size: 0.8rem; color: var(--gold-primary); letter-spacing: 0.1em;
    margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.showcase-desc {
    color: #ccc; font-size: 1rem; margin-bottom: 20px; line-height: 1.6;
}
.showcase-features {
    list-style: none; padding: 0; margin: 0 0 25px;
}
.showcase-features li {
    font-size: 0.9rem; color: #bbb; margin-bottom: 8px;
    padding-left: 18px; position: relative;
}
.showcase-features li::before {
    content: '✓'; position: absolute; left: 0; color: var(--gold-primary);
    font-size: 0.8rem;
}
.showcase-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold-primary); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}
.showcase-item:hover .showcase-link { gap: 14px; }
.showcase-arrow { transition: transform 0.3s ease; }
.showcase-item:hover .showcase-arrow { transform: translateX(4px); }

/* Reverse layout for alternating cards */
.showcase-reverse { direction: ltr; }

/* ② Sub Service Card (夜マガ) */
.service-sub-card {
    display: flex; align-items: center; gap: 30px;
    max-width: 1200px; margin: 0 auto 30px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.4s ease;
}
.service-sub-card:hover {
    border-color: rgba(201, 168, 108, 0.25);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}
.sub-card-icon {
    flex-shrink: 0; width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201, 168, 108, 0.2); border-radius: 4px;
    background: rgba(201, 168, 108, 0.05);
}
.sub-card-icon i { font-size: 1.4rem; color: var(--gold-primary); }
.sub-card-body { flex: 1; }
.sub-card-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.sub-card-num { font-size: 0.7rem; color: #666; letter-spacing: 0.1em; }
.sub-card-title { font-family: var(--font-jp); font-size: 1.3rem; color: #fff; font-weight: 700; }
.sub-card-sub { font-size: 0.75rem; color: var(--gold-primary); letter-spacing: 0.05em; }
.sub-card-desc { color: #999; font-size: 0.85rem; line-height: 1.8; }
.sub-card-arrow {
    flex-shrink: 0; color: var(--gold-primary); font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.service-sub-card:hover .sub-card-arrow { transform: translateX(5px); }

/* ③ Coming Soon Grid */
.coming-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px;
    max-width: 1200px; margin: 0 auto;
}
.coming-card {
    padding: 25px 15px; text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px; position: relative;
    transition: all 0.3s ease;
}
.coming-card:hover {
    border-color: rgba(201, 168, 108, 0.15);
    background: rgba(255, 255, 255, 0.03);
}
.coming-card-icon {
    margin-bottom: 12px; font-size: 1.5rem;
}
.coming-card-icon i { color: rgba(201, 168, 108, 0.5); font-size: 1.3rem; }
.coming-card-title {
    font-family: var(--font-jp); font-size: 1rem; color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px; font-weight: 600;
}
.coming-card-sub {
    font-size: 0.65rem; color: #555; letter-spacing: 0.05em;
}
.coming-badge {
    display: inline-block; margin-top: 10px;
    font-size: 0.6rem; color: var(--gold-primary); letter-spacing: 0.1em;
    padding: 3px 10px; border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 99px;
}
.coming-card-fun { border-style: dashed; border-color: rgba(255, 255, 255, 0.08); }
.coming-card-fun .coming-card-icon { font-size: 1.5rem; }
.coming-card-fun .coming-card-title { color: rgba(255, 255, 255, 0.4); }
.coming-card-fun .coming-card-sub { color: #444; }

/* CTA */
.cta-section { padding: 100px 20px; }
.cta-container {
    max-width: 900px; margin: 0 auto; padding: 80px;
    background: rgba(20, 20, 24, 0.8);
    border: 1px solid rgba(201, 168, 108, 0.3); border-radius: 4px; text-align: center;
    backdrop-filter: blur(10px);
}
.cta-label { font-size: 0.8rem; color: var(--gold-primary); letter-spacing: 0.2em; margin-bottom: 20px; display: block; }
.cta-headline { font-size: 2.5rem; font-family: var(--font-jp); margin-bottom: 40px; color: #fff !important; }
.cta-chat-bubbles { max-width: 400px; margin: 0 auto 40px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.chat-bubble {
    padding: 12px 20px; background: rgba(255,255,255,0.1);
    border-radius: 20px 20px 20px 4px; border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 0.9rem;
}
.chat-bubble:nth-child(even) { align-self: flex-end; border-radius: 20px 20px 4px 20px; background: rgba(201, 168, 108, 0.2); }
.cta-main-btn { display: inline-flex; align-items: center; gap: 15px; padding: 20px 50px; background: #06C755; color: #fff !important; font-weight: 600; border-radius: 99px; transition: 0.3s; }
.cta-main-btn:hover { background: #05b54b; transform: translateY(-3px); }

/* ============================================
   Footer
   ============================================ */
.yoruno-footer { background: #0a0a0c; padding: 80px 60px 40px; position: relative; z-index: 2; }
.footer-top-line { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-primary), transparent); margin-bottom: 60px; }
.footer-main { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid #222; }
.footer-brand { max-width: 400px; }
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo { font-size: 1.8rem; font-weight: 700; color: #fff; display: block; }
.footer-tagline { display: block; color: var(--gold-primary); font-size: 0.8rem; margin-top: 5px; }
.footer-desc { color: #888; font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-sns { display: flex; gap: 15px; }
.sns-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid #333; color: #888; transition: 0.3s; border-radius: 50%; }
.sns-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.footer-nav-group { display: flex; gap: 80px; }
.footer-nav h4 { color: var(--gold-primary); border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 20px; font-size: 0.9rem; font-weight: 600; }
.footer-nav ul { padding: 0; list-style: none; margin: 0; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { color: #888; font-size: 0.9rem; transition: 0.3s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { padding-top: 40px; display: flex; justify-content: space-between; align-items: center; color: #666; font-size: 0.8rem; flex-wrap: wrap; gap: 20px; }
.footer-seo-text { font-size: 0.7rem; color: #444; text-align: center; flex-basis: 100%; }
.copyright { color: #666; }
.back-to-top { display: inline-flex; align-items: center; gap: 5px; color: #888; transition: 0.3s; }
.back-to-top:hover { color: var(--gold-primary); }

/* ============================================
   PC Overrides (901px+)
   ============================================ */
@media (min-width: 901px) {
    .yoruno-header { height: 90px; }
    .header-container { padding: 0 60px; }
    
    .header-nav { display: flex; gap: 50px; position: absolute; left: 50%; transform: translateX(-50%); }
    .header-cta {
        display: flex; align-items: center; gap: 10px; padding: 12px 28px;
        font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
        color: #000 !important;
        background: var(--gold-primary); border-radius: 99px; transition: 0.3s;
    }
    .header-cta:hover { background: var(--gold-light); }
    
    .mobile-menu-btn { display: none; }

    .hero-section { height: 100vh; }
    .headline-row { font-size: 3.5rem; }
    .headline-row.row-accent { font-size: 4rem; }
    .hero-yoruno { font-size: 8rem; }
    .hero-cta-group { flex-direction: row; }
    .hero-btn { width: auto; padding: 18px 45px; }
    .scroll-indicator { left: 60px; transform: none; bottom: 100px; }

    .section { padding: 100px 60px; }
    .section-header { flex-direction: column; gap: 12px; margin-bottom: 60px; }
    .section-title { text-align: center; font-size: 2.5rem; }
    .section-line { width: 60px; height: 1px; margin: 0 auto; }
    
    .strength-cards { grid-template-columns: repeat(3, 1fr); gap: 30px; }


    .cta-container { padding: 80px; }
    .cta-headline { font-size: 2.5rem; }
    .cta-main-btn { width: auto; }

    .yoruno-footer { padding: 80px 60px 40px; }
    .footer-main { flex-direction: row; }
    .footer-brand { margin: 0; max-width: 400px; }
    .footer-sns { justify-content: flex-start; }
    .footer-nav-group { gap: 80px; justify-content: flex-end; }
    .footer-bottom { flex-direction: row; }
    .footer-seo-text { flex-basis: auto; order: -1; }
}

/* ============================================
   Mobile (900px-)
   ============================================ */
@media (max-width: 900px) {
    .yoruno-header { padding: 0 20px; height: 70px; }
    .header-container { padding: 0; }
    
    .header-nav, .header-cta { display: none !important; }
    .mobile-menu-btn { display: flex; z-index: 1002; margin-left: auto; }

    .hero-section { padding: 100px 20px; height: auto; min-height: 100dvh; }
    .headline-row { font-size: 2rem; }
    .headline-row.row-accent { font-size: 2.3rem; }
    .hero-yoruno { font-size: 3.5rem; }
    .hero-desc { font-size: 1rem; margin-bottom: 30px; }
    
    .hero-cta-group { flex-direction: column; width: 100%; max-width: 340px; margin: 0 auto; }
    .hero-btn { width: 100%; justify-content: center; font-size: 0.85rem; }
    .scroll-indicator { left: 50%; transform: translateX(-50%); bottom: 30px; }

    .section { padding: 60px 20px; }
    .section-header { flex-direction: column; gap: 10px; margin-bottom: 30px; }
    .section-line { width: 40px; height: 1px; margin: 0 auto; }
    .section-title { text-align: center; font-size: 1.8rem; }
    
    .about-headline { font-size: 1.5rem; }
    .strength-cards { grid-template-columns: 1fr; gap: 15px; }
    .strength-card { padding: 30px 20px; }
    .strength-icon i { font-size: 1.8rem; }
    .showcase-item { grid-template-columns: 1fr; min-height: auto; }
    .showcase-reverse { direction: ltr; }
    .showcase-text { order: 1; }
    .showcase-image { order: 2; min-height: 320px; border: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .showcase-text { padding: 30px 25px; }
    .showcase-title { font-size: 1.5rem; }
    .showcase-features li { font-size: 0.85rem; }
    .service-sub-card { flex-direction: column; text-align: center; padding: 25px 20px; gap: 15px; }
    .sub-card-top { flex-direction: column; gap: 5px; align-items: center; }
    .sub-card-desc { text-align: center; }
    .sub-card-arrow { display: none; }
    .coming-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .coming-card { padding: 20px 10px; }
    .coming-card-title { font-size: 0.9rem; }
    
    .cta-section { padding: 60px 20px; }
    .cta-container { padding: 50px 20px; }
    .cta-headline { font-size: 1.8rem; }
    .cta-main-btn { width: 100%; justify-content: center; }

    .yoruno-footer { padding: 60px 20px 30px; }
    .footer-main { flex-direction: column; gap: 40px; text-align: center; }
    .footer-brand { margin: 0 auto; width: 100%; }
    .footer-desc { text-align: center; }
    .footer-sns { justify-content: center; margin-top: 20px; }
    
    .footer-nav-group { flex-direction: row; justify-content: center; gap: 30px; text-align: left; width: 100%; }
    .footer-nav { width: 45%; }
    .footer-nav h4 { width: 100%; display: block; }
    
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
    .headline-row { font-size: 1.8rem; }
    .headline-row.row-accent { font-size: 2rem; }
    .hero-yoruno { font-size: 13vw; }
    .hero-btn { padding: 16px 20px; font-size: 0.85rem; }
    
    .footer-nav-group { flex-direction: column; gap: 30px; }
    .footer-nav { width: 100%; text-align: center; }

    .recruit-cards { grid-template-columns: 1fr; }
}

/* ============================================
   Phase 1: Scroll Animations
   GSAP-first: CSS sets initial hidden state,
   GSAP or IO fallback reveals. Safety: 3s auto-reveal.
   ============================================ */

/* --- Fade In --- */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Slide Up --- */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.reveal-slide-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Slide Left --- */
.reveal-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* --- Slide Right --- */
.reveal-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* --- Text Reveal --- */
.text-reveal {
    display: inline-block;
    position: relative;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s var(--ease-luxury);
}
.text-reveal.text-revealed {
    clip-path: inset(0 0% 0 0);
}

/* --- Stagger Items --- */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}
.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- GSAP/IO共通: 全アニメ対象の初期状態 + 遷移設定 --- */
.section-num,
.section-title,
.section-line,
.crew-banner,
.showcase-item,
.service-sub-card,
.coming-card,
.chat-bubble,
.cta-label,
.cta-headline,
.cta-main-btn,
.about-headline,
.about-text,
.services-intro,
.strength-card {
    opacity: 0;
    transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}
.section-header.revealed,
.section-num.revealed,
.section-title.revealed,
.section-line.revealed,
.crew-banner.revealed,
.showcase-item.revealed,
.service-sub-card.revealed,
.coming-card.revealed,
.chat-bubble.revealed,
.cta-label.revealed,
.cta-headline.revealed,
.cta-main-btn.revealed,
.about-headline.revealed,
.about-text.revealed,
.services-intro.revealed,
.strength-card.revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* --- GSAP active: CSS transitionを無効化（GSAPと競合防止） --- */
html.gsap-active .reveal-fade,
html.gsap-active .reveal-slide-up,
html.gsap-active .reveal-slide-left,
html.gsap-active .reveal-slide-right,
html.gsap-active .text-reveal,
html.gsap-active .stagger-item,
html.gsap-active .section-num,
html.gsap-active .section-title,
html.gsap-active .section-line,
html.gsap-active .crew-banner,
html.gsap-active .showcase-item,
html.gsap-active .service-sub-card,
html.gsap-active .coming-card,
html.gsap-active .chat-bubble,
html.gsap-active .cta-label,
html.gsap-active .cta-headline,
html.gsap-active .cta-main-btn,
html.gsap-active .about-headline,
html.gsap-active .about-text,
html.gsap-active .services-intro,
html.gsap-active .strength-card {
    transition: none !important;
}

/* --- Safety net: GSAP未ロード時のみ4s後に全要素強制表示 --- */
@keyframes force-visible {
    to { opacity: 1; transform: none; clip-path: none; }
}
html:not(.gsap-active) .reveal-fade,
html:not(.gsap-active) .reveal-slide-up,
html:not(.gsap-active) .reveal-slide-left,
html:not(.gsap-active) .reveal-slide-right,
html:not(.gsap-active) .text-reveal,
html:not(.gsap-active) .stagger-item,
html:not(.gsap-active) .section-num,
html:not(.gsap-active) .section-title,
html:not(.gsap-active) .section-line,
html:not(.gsap-active) .crew-banner,
html:not(.gsap-active) .showcase-item,
html:not(.gsap-active) .service-sub-card,
html:not(.gsap-active) .coming-card,
html:not(.gsap-active) .chat-bubble,
html:not(.gsap-active) .cta-label,
html:not(.gsap-active) .cta-headline,
html:not(.gsap-active) .cta-main-btn,
html:not(.gsap-active) .about-headline,
html:not(.gsap-active) .about-text,
html:not(.gsap-active) .services-intro,
html:not(.gsap-active) .strength-card,
html:not(.gsap-active) .gsap-headline,
html:not(.gsap-active) .gsap-fade {
    animation: force-visible 0s 4s forwards;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade,
    .reveal-slide-up,
    .reveal-slide-left,
    .reveal-slide-right,
    .text-reveal,
    .stagger-item,
    .section-header,
    .section-num,
    .section-title,
    .section-line,
    .recruit-row,
    .recruit-intro,
    .recruit-cta,
    .showcase-item,
    .service-sub-card,
    .coming-card,
    .chat-bubble,
    .cta-label,
    .cta-headline,
    .cta-main-btn,
    .about-headline,
    .about-text,
    .services-intro,
    .strength-card {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================
   Crew Banner — Compact Recruitment Strip
   ============================================ */
.crew-banner {
    display: block;
    margin: 0 40px 80px;
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    background: rgba(201, 168, 108, 0.04);
    text-decoration: none !important;
    color: inherit;
    transition: background 0.4s var(--ease-luxury),
                border-color 0.4s var(--ease-luxury),
                transform 0.3s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}
/* subtle left accent line */
.crew-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.crew-banner:hover {
    background: rgba(201, 168, 108, 0.07);
    border-color: rgba(201, 168, 108, 0.45);
    transform: translateY(-2px);
}
.crew-banner:hover::before {
    opacity: 1;
}
.crew-banner:hover .crew-banner-btn i {
    transform: translateX(5px);
}

.crew-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 36px 48px;
}

.crew-banner-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crew-banner-label {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.crew-banner-headline {
    font-family: var(--font-jp);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin: 0;
}

.crew-banner-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    margin: 0;
}

.crew-banner-right {
    flex-shrink: 0;
}

.crew-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(201, 168, 108, 0.45);
    border-radius: 50px;
    font-family: var(--font-jp);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.crew-banner:hover .crew-banner-btn {
    background: rgba(201, 168, 108, 0.12);
    border-color: var(--gold-primary);
}
.crew-banner-btn i {
    transition: transform 0.3s var(--ease-luxury);
}

/* --- Crew Banner Mobile --- */
@media (max-width: 768px) {
    .crew-banner {
        margin: 0 20px 60px;
    }
    .crew-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 28px 24px;
    }
    .crew-banner-headline {
        font-size: 1.15rem;
    }
    .crew-banner-btn {
        width: 100%;
        justify-content: center;
    }
}
