:root {
    /* Colors - High Impact */
    --color-main: #002d46;
    /* Deep Teal Navy */
    --color-sub: #59a9a6;
    /* Muted Cyan */
    --color-accent: #FFFFFF;
    /* White */
    --color-passion: #FFD700;
    /* Gold/Passion point */
    --color-text: #333333;
    --color-bg: #F0F2F2;
    /* Very Light Grey */
    --color-bg-dark: #001a29;
    /* Darker Navy */

    /* Fonts */
    --font-en: 'Jost', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;

    /* Animation */
    --easing: cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: 0.3s var(--easing);
}

/* Base */
body {
    font-family: var(--font-jp);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: 0.05em;
}

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

/* Typography Tools */
.impact-text {
    font-family: var(--font-en);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
}

/* --- HEADER & NAV (High Impact) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: #aaa;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    /* Wider for impact */
    margin: 0 auto;
}

.logo-link {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: white;
}

.logo-accent {
    color: var(--color-passion);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-tagline {
    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: white;
    color: white;
    /* Will work with exclusion mix-blend-mode */
}

/* Header Actions */
.main-navigation {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 30px;
}

.header-btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s;
    line-height: 1;
    display: inline-block;
    color: white;
    white-space: nowrap;
}

.btn-req {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-req:hover {
    background: white;
    color: var(--color-main);
}

.btn-line {
    background: #06c755;
    /* LINE Green */
    color: white;
}

.btn-line:hover {
    background: white;
    color: #06c755;
}

.btn-entry-head {
    background: var(--color-passion);
    color: var(--color-main);
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.btn-entry-head:hover {
    background: white;
    color: var(--color-main);
}

@media (max-width: 900px) {
    .header-actions {
        display: none;
    }

    /* Mobile Header Adjustments */
    .site-header {
        padding: 10px 0;
    }

    .site-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .logo-link {
        font-size: 1.5rem;
        /* Smaller logo on mobile */
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .logo-tagline br {
        display: none;
    }

    .menu-text {
        display: none;
        /* Hide MENU text */
    }
}

/* Hamburger Menu Trigger */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: white;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1rem;
    z-index: 1001;
}

.menu-text {
    margin-right: 15px;
    letter-spacing: 0.2em;
}

.hamburger {
    width: 40px;
    height: 14px;
    /* Shorter, stouter */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    /* Thicker lines */
    background-color: white;
    transition: var(--transition-fast);
}

/* Menu Overlay (Full Screen Impact) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-passion);
    /* Passion Gold Background */
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.5s var(--easing);
}

.menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Menu Open State */
body.menu-open .site-header {
    mix-blend-mode: normal;
    z-index: 2000;
    /* Ensure button stays on top */
}

body.menu-open .logo-link {
    color: var(--color-main);
    /* Match menu theme */
}

body.menu-open .menu-overlay {
    transform: translateY(0);
}

body.menu-open .menu-content {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--color-main);
}

body.menu-open .hamburger span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--color-main);
}

body.menu-open .menu-toggle {
    color: var(--color-main);
}

/* Navigation Links (Overlay) */
.menu-content ul {
    list-style: none;
    text-align: center;
}

.menu-content li {
    margin: 15px 0;
    overflow: hidden;
    /* For reveal anim */
}

/* Target Overlay Menu Links specifically */
.menu-content a {
    display: block;
    font-size: clamp(3rem, 5vw, 5rem);
    font-family: var(--font-en);
    font-weight: 900;
    color: var(--color-passion);
    line-height: 1;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.5s var(--easing);
}

body.menu-open .main-navigation a {
    transform: translateY(0);
}

.menu-content a:hover {
    color: white;
    -webkit-text-stroke: 2px var(--color-main);
}

/* Menu CTA */
.menu-cta {
    margin-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s 0.3s;
}

body.menu-open .menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.btn-entry {
    display: inline-block;
    padding: 20px 60px;
    background: var(--color-main);
    color: var(--color-passion);
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50px;
}

.btn-entry:hover {
    background: white;
    color: var(--color-main);
}

/* --- HERO SECTION (Broken Grid) --- */
.hero-broken-grid {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-color: #f4f8f7;
    /* Very light gray/mint */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Decoration */
.hero-bg-text {
    position: absolute;
    bottom: -5%;
    font-family: var(--font-en);
    font-size: 20vw;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    z-index: 15;
    background: linear-gradient(45deg, var(--color-passion), var(--color-main), var(--color-passion));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s linear infinite;
    mix-blend-mode: multiply;
    text-align: center;
    margin: 0 auto;
    right: 0;
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    z-index: 1;
}

/* Left Side (Whitespace & Text) */
.hero-left {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5vw;
}

.hero-small-copy {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* Main Copy - Overlapping */
.hero-main-copy {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    white-space: nowrap;
    position: absolute;
    left: 5vw;
    z-index: 10;
    color: var(--color-main);
    /* Navy Text */
    mix-blend-mode: normal;
}

.hero-main-copy .d-block {
    display: table;
    /* Shrink to fit content */
    background: var(--color-passion);
    /* Yellow Highlight */
    padding: 0 0.2em;
    margin-bottom: 0.1em;
}

/* Right Side (Image Area) */
.hero-right {
    width: 60%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-image-reveal {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Initial state for animation */
    clip-path: inset(0 100% 0 0);
    /* Hidden from right */
    animation: revealImage 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards 0.5s;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    /* Zoom effect */
    animation: zoomOutImage 2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.5s;
}

/* Scroll Line */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 5vw;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-main);
    transform: rotate(-90deg);
    transform-origin: left center;
    margin-right: -40px;
    /* Adjust for rotation */
    display: inline-block;
}

.scroll-line {
    width: 80px;
    height: 1px;
    background-color: var(--color-main);
    margin-left: 60px;
    /* Adjust for rotation */
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-passion);
    transform: translateX(-100%);
    animation: scrollLine 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

/* Animations */
@keyframes revealImage {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes zoomOutImage {
    0% {
        transform: scale(1.3);
    }

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

@keyframes scrollLine {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Fade Up Utilities */
.fade-up-delay-1,
.fade-up-delay-2,
.fade-up-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.fade-up-delay-1 {
    animation-delay: 0.8s;
}

.fade-up-delay-2 {
    animation-delay: 1.0s;
}

.fade-up-delay-3 {
    animation-delay: 1.2s;
}

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

/* Responsive */
@media (max-width: 900px) {
    .hero-broken-grid {
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-left {
        width: 100%;
        height: 40%;
        padding: 40px 20px;
        justify-content: center;
        align-items: flex-start;
        /* Reset center from desktop */
    }

    .hero-bg-text {
        bottom: auto;
        top: 20%;
        font-size: 13vw;
        /* Reduced to fit "RECRUIT" width */
        left: 0;
        width: 100%;
        text-align: center;
    }

    .hero-main-copy {
        position: relative;
        /* Stack on mobile */
        left: 0;
        font-size: 3rem;
        /* Disable blend mode on mobile if needed, or keep for effect */
        mix-blend-mode: normal;
        color: var(--color-main);
    }

    .hero-right {
        width: 100%;
        height: 60%;
        position: relative;
    }

    .hero-image-reveal {
        clip-path: inset(100% 0 0 0);
        /* Reveal from bottom for mobile? */
        animation-name: revealImageMobile;
    }

    .scroll-indicator {
        left: 20px;
        bottom: 20px;
    }
}

@keyframes revealImageMobile {
    0% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* --- VISION SECTION (Contrast) --- */
.vision-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--color-text);
    /* Almost Black */
    color: white;
    overflow: hidden;
    /* Ensure watermark doesn't scrollbar */
}

.vision-big-title {
    position: absolute;
    top: -50px;
    right: -20px;
    font-size: 15rem;
    font-family: var(--font-en);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

/* Specific adjustment for longer text "HOKKAIDO" */
.vision-watermark-hokkaido {
    font-size: clamp(8rem, 15vw, 15rem);
    /* Responsive sizing */
    right: -5%;
    /* Pull it slightly off screen if needed */
    letter-spacing: 0.05em;
}

/* Vertical Side Marquee */
.vision-side-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
}

.side-marquee-track {
    display: flex;
    flex-direction: column;
    animation: sideMarquee 20s linear infinite;
    white-space: nowrap;
    padding-top: 50vh;
    /* Start halfway */
}

.side-marquee-item {
    writing-mode: sideways-lr;
    text-orientation: revert-layer;
    font-family: var(--font-en);
    font-size: 5.2rem;
    font-weight: 700;
    color: var(--color-passion);
    letter-spacing: 0.1em;
    margin-bottom: 100px;
}

@keyframes sideMarquee {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 4rem;
    font-family: var(--font-en);
    color: var(--color-passion);
    margin-bottom: 40px;
}

.vision-statement {
    font-size: clamp(2rem, 4vw, 3.5rem);
    /* Larger impact */
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.vision-lead {
    font-size: 1.1rem;
    line-height: 2.2;
    /* Increased for readability/intellect */
    font-weight: 500;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 800px;
}

.highlight {
    background: white;
    color: black;
    padding: 5px 15px;
    display: inline-block;
}

.highlight-gold {
    background: var(--color-passion);
    color: var(--color-text);
    padding: 5px 15px;
    display: inline-block;
}

.vision-image-wrapper {
    margin-top: 50px;
    width: 60%;
    margin-left: auto;
    border: 1px solid var(--color-passion);
    padding: 10px;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background: url('https://placehold.co/800x600/111/333') center/cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.img-placeholder:hover {
    filter: grayscale(0%);
}


/* --- CULTURE SECTION (Hard Edge Bento) --- */
.culture-section {
    padding: 120px 0;
    background-color: #F8F8F8;
}

.section-title-impact {
    font-size: 5rem;
    font-family: var(--font-en);
    text-align: center;
    color: var(--color-main);
    line-height: 0.9;
}

.section-sub-impact {
    text-align: center;
    font-family: var(--font-en);
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 80px;
}

.bento-grid-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: white;
    border: 2px solid #EEE;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    overflow: hidden;
    color: var(--color-text);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-main);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--easing);
    z-index: 1;
}

.bento-card:hover {
    border-color: var(--color-main);
}

.bento-card:hover .card-bg {
    transform: scaleY(1);
}

.card-content {
    position: relative;
    z-index: 2;
    transition: color 0.4s;
}

.bento-card:hover .card-content {
    color: white;
}

.card-num {
    font-family: var(--font-en);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
    color: #CCC;
}

.bento-card:hover .card-num {
    color: var(--color-passion);
}

.bento-card h3 {
    font-family: var(--font-en);
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bento-card p {
    font-size: 0.9rem;
    font-weight: 700;
}

.card-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    opacity: 0;
    transform: translate(-20px, 20px);
    transition: all 0.4s;
    color: var(--color-passion);
}

.bento-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Grid layout */
.card-large {
    grid-column: span 1;
    grid-row: span 2;
}

.card-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.card-wide {
    grid-column: span 2;
    grid-row: span 1;
}


/* --- CEO MESSAGE SECTION (New) --- */
.ceo-section {
    padding: 150px 0;
    background-color: var(--color-text);
    /* Dark background */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background element */
.ceo-section::before {
    content: 'LEADER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 20rem;
    font-family: var(--font-en);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.ceo-container {
    position: relative;
    z-index: 2;
}

.ceo-header {
    margin-bottom: 80px;
    text-align: left;
    position: relative;
}

.ceo-title-en {
    font-family: var(--font-en);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.8;
    margin-bottom: 10px;
    color: white;
}

.ceo-title-jp {
    display: inline-block;
    background: var(--color-passion);
    color: var(--color-text);
    padding: 5px 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.ceo-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.ceo-image-wrapper {
    width: 45%;
    position: relative;
    /* Ensure image container respects aspect ratio or sizing */
}

/* Updated Image Style */
.ceo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    /* Landscape */
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s;
    display: block;
    /* Remove inline gap */
}

.ceo-image-wrapper:hover .ceo-img {
    filter: grayscale(0%);
}

.ceo-name-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-main);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-passion);
}

.ceo-position {
    font-size: 0.8rem;
    color: var(--color-passion);
    margin-bottom: 5px;
}

.ceo-name {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
}

.ceo-text-body {
    width: 50%;
    padding-top: 50px;
}

.ceo-headline {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    border-left: 5px solid var(--color-passion);
    padding-left: 20px;
}

.ceo-text-body p {
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.9;
}

/* --- FEATURES SECTION (Why DPLUS) --- */
.section-features {
    padding: 120px 0;
    background-color: #f4f8f7;
    /* Mint Grey */
    color: var(--color-main);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-sub {
    font-family: var(--font-jp);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Numbers */
.features-numbers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 100px;
    border-bottom: 1px solid rgba(0, 45, 70, 0.1);
    padding-bottom: 60px;
}

.number-item {
    text-align: center;
    padding: 20px;
}

.num-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.8;
}

.num-value-wrapper {
    font-family: var(--font-en);
    font-weight: 900;
    color: var(--color-main);
    line-height: 1;
}

.num-value {
    font-size: clamp(3rem, 5vw, 5rem);
}

.num-unit {
    font-size: 2rem;
    vertical-align: top;
    margin-left: 5px;
}

/* Reasons (3 Columns) */
.features-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    /* Slight soft edge */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s;
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-img-box {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    background: #EEE;
    /* Placeholder bg */
}

.reason-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://placehold.co/600x400/eef/ccc') center/cover;
}

.reason-num {
    position: absolute;
    top: -15px;
    left: 20px;
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-passion);
    text-shadow: 2px 2px 0px white;
    line-height: 1;
}

.reason-title {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.reason-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* Philosophy (Split) */
.features-philosophy {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 0;
    overflow: hidden;
}

.philo-img {
    width: 50%;
    height: 500px;
}

.philo-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://placehold.co/800x800/111/333') center/cover;
}

.philo-text {
    width: 50%;
    padding: 60px;
}

.philo-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.philo-desc {
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 2;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    font-weight: 700;
    transition: all 0.3s;
}

.btn-more .arrow {
    margin-left: 15px;
    transition: transform 0.3s;
}

.btn-more:hover {
    background: var(--color-main);
    color: white;
}

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

/* Responsive - Features */
@media (max-width: 900px) {
    .features-reasons {
        grid-template-columns: 1fr;
    }

    .features-philosophy {
        flex-direction: column;
    }

    .philo-img,
    .philo-text {
        width: 100%;
    }

    .philo-img {
        height: 300px;
    }

    /* Restore CEO Section Mobile Layout */
    .ceo-content {
        flex-direction: column;
    }

    .ceo-image-wrapper,
    .ceo-text-body {
        width: 100%;
    }

    .ceo-image-wrapper {
        margin-bottom: 50px;
    }

    .ceo-text-body {
        padding-top: 0;
    }
}


/* --- RECRUITMENT INDEX SECTION --- */
.recruit-index-section {
    padding: 100px 0;
    background-color: var(--color-main);
    color: white;
    overflow: hidden;
    /* For visual bleed */
}

/* Flex Container for List + Visual */
.recruit-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.recruit-index-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 60%;
    /* Left side */
    position: relative;
    z-index: 2;
    /* Above visual */
}

/* Visual Area (Right/Background) */
.recruit-index-visual {
    width: 35%;
    height: 400px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.visual-inner {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    /* Default */
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-passion);
    opacity: 0;
    /* Hidden by default */
    transform: scale(0.9) rotate(5deg);
    transition: all 0.5s var(--easing);
}

/* List Item Styles */
.index-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s;
}

.index-item:hover {
    border-color: var(--color-passion);
}

.index-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    width: 100%;
    transition: color 0.3s, transform 0.3s;
}

.index-item:hover a {
    color: var(--color-passion);
    transform: translateX(20px);
}

.index-text-en {
    font-family: var(--font-en);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-right: 30px;
    width: 50%;
}

.index-text-jp {
    font-size: 1rem;
    opacity: 0.7;
    flex-grow: 1;
}

.index-arrow {
    font-size: 2rem;
    font-weight: 300;
}

/* Responsive - Recruit Index */
@media (max-width: 900px) {
    .recruit-index-list {
        width: 100%;
    }

    .recruit-index-visual {
        display: none;
        /* Hide visual on mobile */
    }
}


/* --- CTA SECTION (Purpose Driven) --- */
.section-cta {
    position: relative;
    padding: 120px 0;
    color: white;
    background: url('https://placehold.co/1920x1080/001a29/333') center/cover fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 70, 0.85);
    /* Main color overlay */
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-sub {
    font-size: 1.2rem;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-card {
    position: relative;
    width: 25%;
    min-width: 280px;
    padding: 40px 20px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ... (Keep existing CTA lines) ... */

/* --- RECRUITMENT INDEX SECTION --- */
.recruit-index-section {
    padding: 100px 0;
    background-color: var(--color-main);
    color: white;
    overflow: hidden;
    position: relative;
}

.recruit-content-wrapper {
    position: relative;
    /* Changed from flex row to block/overlay for horizontal list context */
    display: block;
}

.recruit-index-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    /* Horizontal Layout */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.recruit-index-visual {
    /* Visual as background overlay */
    position: absolute;
    top: -50px;
    /* Bleed */
    left: -10vw;
    width: 120vw;
    height: 150%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    /* Base opacity */
    mix-blend-mode: overlay;
    /* Creative blending */
}

.visual-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.index-item {
    width: 16%;
    /* 5 items -> ~20% */
    min-width: 160px;
    border-bottom: none;
    /* Remove list border */
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    /* Vertical separator */
    padding-left: 20px;
    transition: transform 0.3s;
}

/* First item border fix */
.index-item:first-child {
    border-left: none;
    padding-left: 0;
}

.index-item:hover {
    transform: translateY(-10px);
}

.index-item a {
    display: flex;
    flex-direction: column;
    /* Stack text vertical */
    align-items: flex-start;
    padding: 20px 0;
    height: 100%;
}

.index-item:hover a {
    color: var(--color-passion);
    transform: none;
    /* Reset distinct transform */
}

.index-text-en {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
    word-break: break-word;
    /* Wrap long words */
}

.index-text-jp {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.index-arrow {
    margin-top: auto;
    font-size: 1.5rem;
}

/* Responsive - Recruit Index */
@media (max-width: 900px) {
    .recruit-index-list {
        flex-direction: column;
        gap: 0;
    }

    .index-item {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
    }

    .index-item a {
        flex-direction: row;
        align-items: center;
        padding: 30px 0;
    }

    .index-text-en {
        margin-bottom: 0;
        width: 50%;
    }
}