:root {
    --color-primary: #123524; /* 深緑アクセント */
    --color-secondary: #3b3b3b; /* ダークグレー */
    --color-bg: #ffffff;      /* 白ベース */
    --color-light-bg: #f4f6f5; /* 薄いグレー/緑み */
    --color-text: #333333;
    --font-family: 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

h2 {
    font-size: 2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.center {
    text-align: center;
}

.bg-light { background-color: var(--color-light-bg); }
.bg-dark { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-primary); }
.text-white, .text-white h2 { color: #fff; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(18, 53, 36, 0.3);
}

.btn-primary:hover {
    background-color: #0b1e15;
    transform: translateY(-2px);
    color: #fff;
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 50px;
    background-color: #ffffff;
    color: var(--color-primary);
}
.btn-large:hover {
    background-color: #f0f0f0;
    color: var(--color-primary);
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 10px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-content h1 {
    font-size: 2.6rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}

/* Microcopy & Helpers */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.font-bold { font-weight: bold; }
.text-primary { color: var(--color-primary) !important; }
.text-error { color: #8c4b4b !important; }
.text-accent { color: var(--color-primary) !important; }
.bg-white { background-color: #fff !important; }

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.microcopy {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

/* Agitation / Pain Points */
.pain-points {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.empathy-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #8c4b4b;
    display: inline-block;
    max-width: 700px;
}

/* The System */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border-left: 5px solid var(--color-primary);
}

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Timeline */
.schedule-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.schedule-list li {
    padding: 15px 0;
    border-bottom: 1px solid #555;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.schedule-list li.highlight {
    color: #a5d6a7;
    font-weight: bold;
}

.schedule-list .time {
    font-weight: bold;
    color: #a5d6a7;
    margin-right: 20px;
    min-width: 60px;
}

/* Culture Section */
.culture-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #a5d6a7;
}

.culture-box h3 {
    margin-bottom: 15px;
}

.simple-list {
    list-style: none;
    font-size: 1.1rem;
}

.simple-list li {
    margin-bottom: 8px;
}

/* Job Details Section */
.check-list-dark {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 30px;
}

.check-list-dark li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
    color: #444;
}

.check-list-dark li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 12px;
}

.check-list-dark.small-list {
    margin-bottom: 10px;
}
.check-list-dark.small-list li {
    padding: 8px 0 8px 30px;
    border-bottom: none;
}
.check-list-dark.small-list li::before {
    top: 8px;
}

.job-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.job-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
    display: inline-block;
}

.bullet-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1rem;
    color: #444;
}
.bullet-list li {
    margin-bottom: 10px;
}

/* Timeline specific overrides */
.border-list li {
    border-bottom: 1px solid #ddd !important;
    padding: 20px 0 !important;
}
.highlight-green {
    background-color: #f0fdf4;
    padding: 20px !important;
    border-radius: 5px;
    margin: 10px 0;
    border: 1px solid #dcfce7 !important;
}

/* Social Proof / Future */

.proof-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.proof-boxes .box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 450px;
}

.proof-boxes h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.text-note {
    font-size: 1.2rem;
    color: #666;
    display: block;
    margin-top: 10px;
}
.future-desc {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

/* Interview Q&A */
.qa-block {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-primary);
}

.q-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.q-label {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-right: 15px;
}

.q-box h4 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin: 0;
}

.a-box p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}
.a-box p:last-child {
    margin-bottom: 0;
}

/* Timeline specific */
.text-accent-light { color: #d4edda; }
.schedule-list li {
    flex-wrap: wrap;
}

/* Apply CTA Section overrides */
.apply .microcopy {
    color: #ddd; /* Light color for dark background */
}

/* New Microcopy & Floating CTA */
.microcopy-top {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    backdrop-filter: blur(5px);
}
.floating-cta .btn {
    width: 100%;
    max-width: 400px;
    margin-bottom: 8px;
    display: inline-block;
    padding: 15px 30px;
}
.floating-cta .microcopy {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 100px; /* Space for sticky cta */
    }
    .proof-boxes { flex-direction: column; align-items: center; }
    .hero-content h1 { font-size: 2rem; }
    .q-box { flex-direction: column; align-items: flex-start; }
    .q-label { margin-bottom: 10px; }
    .floating-cta { display: block; }
}
