/* ============================================
   MYRIMO LP - 在宅ワークの窓口
   ランディングページ専用スタイル
   ============================================ */

/* --- LP Hero --- */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/washi-purple.png') center center / cover no-repeat;
    position: relative;
    padding: 6rem 2rem;
}

.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
}

.lp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.lp-hero__label {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--origami-gold);
    margin-bottom: 1.5rem;
}

.lp-hero__title {
    font-family: var(--font-ja-serif);
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    color: var(--origami-navy);
    line-height: 1.4;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.lp-hero__title-accent {
    display: inline-block;
    border-bottom: 3px solid var(--origami-gold);
    padding-bottom: 4px;
}

.lp-hero__subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2rem;
}

/* --- LP Sections --- */
.lp-section {
    padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.lp-section--white {
    background: #fff;
}

.lp-section--navy {
    background: var(--origami-navy);
}

.lp-section--washi {
    background: url('assets/washi-purple.png') center center / cover no-repeat;
    position: relative;
}

.lp-section--washi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
}

.lp-section--washi > * {
    position: relative;
    z-index: 1;
}

.lp-section--cta-mid {
    background: #f6f6f6;
    padding: clamp(3rem, 5vw, 4rem) 2rem;
}

.lp-container {
    max-width: 800px;
    margin: 0 auto;
}

.lp-section__label {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--origami-gold);
    margin-bottom: 0.8rem;
}

.lp-section__label--light {
    color: rgba(255, 255, 255, 0.5);
}

.lp-section__title {
    font-family: var(--font-ja-serif);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--origami-navy);
    line-height: 1.5;
    margin-bottom: 3rem;
    letter-spacing: 0.06em;
}

.lp-section__title--light {
    color: #fff;
}

/* --- CTA Button (LINE green) --- */
.lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    background: #06C755;
    color: #fff;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.35);
    transition: all 0.3s ease;
}

.lp-cta-btn:hover {
    background: #05b04c;
    box-shadow: 0 6px 28px rgba(6, 199, 85, 0.5);
    transform: translateY(-2px);
}

.lp-cta-btn--large {
    padding: 1.2rem 3rem;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.lp-cta-btn__icon {
    display: flex;
    align-items: center;
}

.lp-cta-btn__icon svg {
    fill: #fff;
}

/* お問い合わせ用ボタン（navy） */
.lp-cta-btn--contact {
    background: var(--origami-navy);
    box-shadow: 0 4px 20px rgba(26, 42, 94, 0.3);
}

.lp-cta-btn--contact:hover {
    background: #0f1d3d;
    box-shadow: 0 6px 28px rgba(26, 42, 94, 0.45);
}

.lp-cta-mid__text {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* --- Problem Section --- */
.lp-problems {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-problem {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-problem:last-child {
    border-bottom: none;
}

.lp-problem__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
    opacity: 0.6;
}

.lp-problem__title {
    font-family: var(--font-ja-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.lp-problem__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* --- Solution Section --- */
.lp-solution {
    max-width: 650px;
}

.lp-solution__lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: 2rem;
}

.lp-solution__lead strong {
    color: #fff;
    border-bottom: 2px solid var(--origami-gold);
    padding-bottom: 2px;
}

.lp-solution__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-solution__list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.lp-solution__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15em;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--origami-gold), transparent);
}

/* --- Job Cards --- */
.lp-group-title {
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--origami-navy);
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--origami-gold);
}

.lp-group-title--upcoming {
    border-left-color: var(--text-tertiary);
    color: var(--text-secondary);
    margin-top: 3rem;
}

.lp-jobs--active {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-job {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.lp-job:last-child {
    border-bottom: none;
}

.lp-job__num {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--origami-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.lp-job__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.lp-job__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.lp-jobs--upcoming {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.lp-job-tag {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    opacity: 0.7;
}

/* --- Steps --- */
.lp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.lp-steps::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 1px;
    background: rgba(26, 42, 94, 0.1);
}

.lp-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
}

.lp-step__num {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    background: var(--origami-navy);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.lp-step__title {
    font-family: var(--font-ja-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.lp-step__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Final CTA --- */
.lp-final-cta__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    margin-bottom: 2.5rem;
}

/* --- Contract Flow Diagram --- */
.lp-flow-diagram {
    margin-top: 1rem;
}

.lp-flow-svg {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 600px) {
    .lp-flow-svg {
        /* モバイルでは横スクロール可能に */
        min-width: 600px;
    }

    .lp-flow-diagram {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .lp-hero {
        min-height: 90vh;
        padding: 5rem 1.5rem;
    }

    .lp-problem {
        flex-direction: column;
        gap: 0.8rem;
    }

    .lp-step {
        gap: 1.2rem;
    }

    .lp-step__num {
        width: 48px;
        height: 48px;
        font-size: 0.85rem;
    }

    .lp-steps::before {
        left: 23px;
    }
}
