@charset "UTF-8";

/* =========================================
   1. GLOBAL & RESET
   ========================================= */
:root {
    --primary-color: #FE222C;
    --secondary-color: #2c5e4f;
    --accent-color: #eab308;
    --text-color: #333333;
    --bg-color: #ffffff;
    --gray-light: #f4f5f7;
    --gray-border: #ddd;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Inter', 'Noto Sans JP', sans-serif;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
} */
/* Commented out global resets to avoid conflicts with theme style.css */


/* =========================================
   3. COMMON LAYOUT & TYPOGRAPHY
   ========================================= */
section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 0.05em;
	background-color: var(--gray-light);
    background-image: linear-gradient(rgba(58, 125, 104, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(58, 125, 104, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

.section-title span {
    display: block;
    font-size: 14px;
    /* color: var(--primary-color); */
    color: #FE222C;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.section-label {
    font-size: 14px;
    /* color: var(--primary-color); */
    color: #FE222C;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Animation Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   5. PAGE HERO SECTION (Subpages)
   ========================================= */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfbf7 0%, #eefcf5 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Specific Hero Variants */
.service-hero {
    height: 60vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('../../images/code-1076536_1920.jpg') center/cover no-repeat;
    filter: blur(8px);
    z-index: -2;
}

.service-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.recruit-message-box {
    background-color: var(--gray-light) !important;
}


.page-hero h1,
.service-hero h1 {
    font-size: 56px;
    font-weight: 300;
    /* color: var(--primary-color); */
    color: #333;
    z-index: 1;
    letter-spacing: 0.05em;
    position: relative;
    margin-bottom: 0px;
}


.page-hero p,
.service-hero p {
    font-size: 18px;
    color: #FE222C;
    letter-spacing: 0.1em;
    z-index: 1;
}


/* Parallax Shapes */
.parallax-shape,
.hero-circle,
.tech-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.parallax-shape {
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 125, 104, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: 20%;
    right: 10%;
}


/* =========================================
   6. SERVICE LIST STYLES (New)
   ========================================= */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.mockup-container {
    flex: 1;
    min-height: 400px;
    background-color: var(--gray-light);
    border-radius: 30px;
    position: relative;
    /* overflow: hidden; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-container img{
	width:100%;
}

/* UI Window Mockup */
.ui-window {
    width: 80%;
    height: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.service-item:hover .ui-window {
    transform: translateY(-10px);
}

.ui-header {
    height: 30px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
}

.ui-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ui-dot.red {
    background: #ff5f56;
}

.ui-dot.yellow {
    background: #ffbd2e;
}

.ui-dot.green {
    background: #27c93f;
}

.ui-body {
    padding: 20px;
    min-height: 200px;
    position: relative;
}

/* Service Content Text */
.service-content {
    flex: 0.8;
}

.service-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    /* display: flex;
    align-items: center;
    gap: 15px; */
    font-weight: 700;
}

.service-content h2 i {

    vertical-align: middle;
    margin-right: 10px;
}


.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 12px;
    background-color: var(--bg-color);
    border: 1px solid var(--gray-border);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}


/* Specific Mockup Inner Styles (CSS Arty things) */

/* CRM Layout */
.crm-layout {
    display: flex;
    gap: 10px;
    height: 100%;
}

.crm-layout .sidebar {
    width: 20%;
    background: #f4f5f7;
    border-radius: 4px;
    height: 150px;
}

.crm-layout .main-panel {
    width: 75%;
}

.chart-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 8px solid #f9f9f9;
    border-top-color: var(--primary-color);
    border-right-color: var(--secondary-color);
    margin: 0 auto 15px;
}

.data-bar {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 8px;
    width: 100%;
}

.data-bar.short {
    width: 60%;
}

/* Inventory Grid */
.inv-grid {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 100px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.inv-card {
    flex: 1;
    text-align: center;
}

.inv-bar {
    width: 100%;
    background: var(--secondary-color);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

/* Weather Map */
.weather-map {
    width: 100%;
    height: 200px;
    background: #e0f7fa;
    position: relative;
    overflow: hidden;
}

.map-pin {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    font-size: 10px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #f9f9f9;
}

.cal-active {
    background: var(--primary-color);
    color: #fff;
}

/* Entry Area */
.entry-area {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    border-radius: 10px;
}

.entry-btn {
    display: inline-block;
    background: #6C676E;

    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(204, 204, 204, 1);
    transition: var(--transition);
}

.entry-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 204, 204, 1);
}


/* Message Box in Service */
.message-box {
    margin-bottom: 0px;
    text-align: center;
    padding: 50px 20px;
	background-color: var(--gray-light);
    background-image: linear-gradient(rgba(58, 125, 104, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(58, 125, 104, 0.03) 1px, transparent 1px);
	background-size: 32px 32px;
	background-position: 0 0;
}

.message-text {
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.highlight-keyword {
    background: linear-gradient(transparent 60%, rgba(254, 34, 44, 0.2) 60%);
    font-weight: 700;
}

/* Match Row */
.match-row {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ddd;
}