@charset "UTF-8";

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.04em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Utility ===== */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.marker {
    background: #FF6F61;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.text-blue {
    color: #2563eb;
    font-weight: 700;
}

.text-small {
    font-size: 0.85rem;
    color: #888;
}

.text-red {
    color: #FF6F61;
    font-weight: 900;
}

.text-center {
    text-align: center;
}

/* ===== Header ===== */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.lp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.lp-header-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.lp-header-logo img {
    height: 40px;
    width: auto;
}

.lp-header-cta {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.lp-header-cta:hover {
    opacity: 0.8;
}

/* ===== Hero ===== */
.lp-hero {
    padding-top: 64px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../photo/haikei11.png') center/cover no-repeat;
}

.lp-hero-inner {
    padding: 120px 0;
}

.lp-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.25;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.lp-hero-sub {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #555;
    border-top: 2px solid #1a1a1a;
    display: inline-block;
    padding-top: 0.75rem;
}

.lp-hero-scroll {
    position: absolute;
    right: 24px;
    bottom: 40px;
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #aaa;
}

/* ===== Section Common ===== */
.lp-section {
    padding: 120px 0;
    border-top: 1px solid #eee;
}

.lp-section.lp-section--dark {
    background: #2d2d2d;
    color: #fff;
    border-top: none;
}

.lp-section--dark .lp-section-label {
    color: rgba(255, 255, 255, 0.5);
}

.lp-section--dark .lp-section-title::after {
    background: #fff;
}

.lp-section--dark .lp-section-title {
    color: #fff;
}

.lp-section--dark .text-blue {
    color: #60a5fa;
}

.lp-section--dark .marker {
    background: #FF6F61;
    color: #fff;
}

.lp-section-label {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.schedule-sub-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.schedule-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.lp-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 56px;
    position: relative;
    display: inline-block;
}

.lp-section-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: #1a1a1a;
    margin-top: 12px;
}

.lp-section .container {
    text-align: center;
}

.lp-section-title {
    display: inline-block;
}

/* ===== Problem ===== */
.lp-problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-problem-item {
    font-size: 1.5rem;
    font-weight: 700;
    padding-left: 24px;
    position: relative;
}

.lp-problem-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
}

.lp-problem-answer {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 32px;
    border-left: 3px solid #2563eb;
    background: #f8f9fb;
    text-align: left;
}

/* ===== Solution ===== */
.lp-solution-headline {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 56px;
    text-align: center;
}

.lp-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-solution-card {
    text-align: center;
    padding: 32px 16px;
}

.lp-solution-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 24px;
}

.lp-solution-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-solution-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* ===== How to Use ===== */
.lp-flow-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.lp-flow-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.lp-flow-number {
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    min-width: 72px;
}

.lp-flow-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-flow-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* ===== Service ===== */
.lp-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.lp-service-card {
    background: #f8f9fb;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.2s;
}

.lp-service-card:hover {
    transform: translateY(-4px);
}

.lp-service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lp-service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.lp-service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Service Schedule */
.lp-service-schedule {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 64px;
}

.lp-service-schedule-item {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.lp-service-schedule-item--highlight {
    border: 2px solid #3b82f6;
    position: relative;
    transform: scale(1.02);
}

.lp-service-schedule-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.schedule-row {
    margin-bottom: 12px;
}

.schedule-row:last-child {
    margin-bottom: 0;
}

.schedule-bar {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
}

.schedule-bar .time {
    flex: 0 0 100px;
}

.schedule-bar .label {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 500;
}

.schedule-bar .hours {
    flex: 0 0 60px;
    text-align: right;
    color: #3b82f6;
}

/* Colors from Image */
.schedule-bar--morning {
    background: #fef3c7;
    /* Pale Yellow */
    color: #92400e;
}

.schedule-bar--morning .hours {
    color: #3b82f6;
}

.schedule-bar--afternoon {
    background: #dbeafe;
    /* Light Blue */
    color: #1e40af;
}

.schedule-bar--night,
.schedule-bar--night-holiday {
    background: #e0e7ff;
    /* Lavender Blue */
    color: #3730a3;
}

.schedule-item-note {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.schedule-total-banner {
    margin-top: 24px;
    height: 64px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .lp-service-schedule {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .lp-service-schedule-item--highlight {
        transform: none;
    }
}

/* ===== PDCCA Cycle ===== */
.pdcca-block {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.pdcca-heading {
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
    line-height: 1.5;
}

.pdcca-cycle {
    max-width: 320px;
    margin: 0 auto 56px;
}

.pdcca-svg {
    width: 100%;
    height: auto;
}

.pdcca-details {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdcca-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #f8f9fb;
    border: 1px solid #eee;
    text-align: left;
}

.pdcca-item--highlight {
    background: rgba(255, 111, 97, 0.15);
    border: 1px solid rgba(255, 111, 97, 0.3);
}

.pdcca-item-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.pdcca-blue {
    background: #2563eb;
}

.pdcca-coral {
    background: #FF6F61;
}

.pdcca-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.pdcca-en {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
    margin-left: 4px;
}

.pdcca-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* ===== CTA ===== */
.lp-cta {
    padding: 80px 0;
    text-align: center;
    background: #1a1a1a;
    color: #fff;
}

.lp-cta h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: 0.02em;
}

.lp-cta p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 32px;
}

.lp-cta-btn {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 8px;
    transition: opacity 0.2s;
}

.lp-cta-btn:hover {
    opacity: 0.85;
}

/* ===== Footer ===== */
.lp-footer {
    padding: 32px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
}

.lp-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.lp-footer-links a {
    font-size: 0.8rem;
    color: #888;
    transition: color 0.2s;
}

.lp-footer-links a:hover {
    color: #1a1a1a;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .lp-hero h1 {
        font-size: 2rem;
    }

    .lp-hero-inner {
        padding: 60px 0;
    }

    .lp-section {
        padding: 64px 0;
    }

    .lp-section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .lp-solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-solution-card {
        padding: 24px 16px;
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .lp-solution-card-icon {
        margin: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .lp-solution-headline {
        font-size: 1.3rem;
        text-align: left;
    }

    .lp-flow-item {
        gap: 16px;
    }

    .lp-flow-number {
        font-size: 2rem;
        min-width: 44px;
    }

    .lp-price-card {
        padding: 32px 24px;
    }

    .pdcca-heading {
        font-size: 1.2rem;
    }

    .pdcca-cycle {
        max-width: 260px;
    }

    .pdcca-item {
        padding: 16px;
    }

    .lp-service-schedule {
        grid-template-columns: 1fr;
    }

    .lp-price-value {
        font-size: 2.2rem;
    }

    .lp-cta h2 {
        font-size: 1.3rem;
    }

    .lp-hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .lp-hero h1 {
        font-size: 1.6rem;
    }

    .lp-hero-sub {
        font-size: 0.95rem;
    }

    .lp-problem-item {
        font-size: 1.05rem;
    }

    .lp-section {
        padding: 48px 0;
    }

    .lp-section-title {
        font-size: 1.3rem;
    }

    .lp-flow-content h4 {
        font-size: 1rem;
    }
}

/* ===== Scroll Reveal Animation ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for solution cards */
.lp-solution-card[data-reveal]:nth-child(2) {
    transition-delay: 0.15s;
}

.lp-solution-card[data-reveal]:nth-child(3) {
    transition-delay: 0.3s;
}