@charset "UTF-8";
@import "common.css";

/* ==========================================================================
   LP2: Company / Comprehensive Service (Navy & Relaxed)
   ========================================================================== */

:root {
    --primary-color: #003366;
    /* Navy Blue */
    --secondary-color: #f4f6f8;
    /* Very Light Gray */
    --accent-color: #8dbbe6;
    /* New soft blue accent */
    --text-color: #2c3e50;
    --gold: #b8860b;
}

body {
    background-color: #fff;
    color: var(--text-color);
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    /* Serif for trust/luxury feel? Or stick to elegant sans */
}

/* Revert to sans-serif for main readability but headers can be serif if requested. Keeping sans for now for modern feel but lighter weight */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

.section {
    padding: 90px 0;
    /* Adjusted padding */
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 500;
}

/* ==========================================================================
   FV (First View)
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Slightly smaller than full screen to hint at content below */
    overflow: hidden;
}

.fv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.4);
    /* Navy overlay */
}

.fv__content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 24px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.fv__content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fv__content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.fv__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding: 0;
}

.fv__badges li {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

/* ==========================================================================
   About (Company Intro)
   ========================================================================== */
.about {
    background-color: var(--secondary-color);
}

.about__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.about__text {
    text-align: center;
    max-width: 800px;
}

.about__text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about__text p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
}

.about__image {
    width: 100%;
    text-align: center;
}

.about__image img {
    max-width: 100%;
    border-radius: 4px;
}

/* ==========================================================================
   Main Service (Cleaning) - Elegant Presentation
   ========================================================================== */
.main-service {
    background-color: #fff;
    padding: 110px 0;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.service-card__img {
    flex: 1;
    height: 400px;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__info {
    flex: 1;
    padding: 60px;
    background: #fff;
}

.service-card__info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column !important;
    }

    .service-card__img {
        width: 100%;
        height: 250px;
    }

    .service-card__info {
        padding: 30px;
    }
}

/* ==========================================================================
   Concept Section (Added)
   ========================================================================== */
.concept {
    background-color: #fff;
    padding: 110px 0 70px;
    /* Slightly more padding top */
    text-align: center;
}

.concept-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    padding-left: 14px;
    display: inline-block;
}

.concept-title::before,
.message__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 4px;
    height: 1.2em;
    background: var(--primary-color);
    border-radius: 2px;
}

.concept-text {
    font-size: 1.1rem;
    line-height: 2.2;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .concept-title {
        font-size: 1.5rem;
    }

    .concept-text {
        font-size: 1rem;
        text-align: left;
    }
}

/* ==========================================================================
   Message Section (Representative)
   ========================================================================== */
.message {
    background-color: #f9f9f9;
    /* Soft background */
    padding: 100px 0;
}

.message__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.message__img {
    flex: 1;
    max-width: 400px;
}

.message__img img {
    width: 100%;
    border-radius: 4px;
    filter: sepia(10%) contrast(90%);
    /* Gentle tone */
}

.message__text {
    flex: 1.2;
}

.message__title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
    position: relative;
    padding-left: 14px;
}

.message__body {
    font-size: 1rem;
    line-height: 2.2;
    color: #555;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    /* Serif for trust/voice */
}

@media (max-width: 800px) {
    .message__inner {
        flex-direction: column;
        gap: 30px;
    }

    .message__img {
        max-width: 100%;
    }
}

/* ==========================================================================
   Strength / Company Info
   ========================================================================== */
.strength {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 90px 0;
}

.strength__list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.strength__item {
    background: #fff;
    padding: 40px;
    max-width: 300px;
    border-top: 3px solid var(--primary-color);
}

.strength__item i {
    color: var(--primary-color);
    opacity: 0.9;
}

.strength__item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.company-info {
    background: #fff;
}

.company-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.company-table th {
    width: 30%;
    font-weight: bold;
    color: var(--primary-color);
}

/* ==========================================================================
   Sub Service List
   ========================================================================== */
.sub-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sub-service-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #34495e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Footer / CTA
   ========================================================================== */
.contact-area {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.contact-logo {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-grid-lp2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 300px;
}

.cta-box h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cta-btn-ghost {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 15px;
    transition: 0.3s;
}

.cta-btn-ghost:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ==========================================================================
   Fixed CTA for LP2
   ========================================================================== */
.fixed-cta-lp2 {
    display: none;
    /* Hidden on PC */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    height: 60px;
}

@media (max-width: 768px) {
    .fixed-cta-lp2 {
        display: flex;
        /* Show on SP */
        flex-wrap: nowrap;
    }
}

.fixed-cta-lp2 a {
    flex: 1;
    width: 33.33%;
    text-align: center;
    padding: 0 4px;
    font-size: 0.7rem;
    /* Smaller font */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.fixed-cta-lp2 a:last-child {
    border-right: none;
}

.fixed-cta-lp2 a i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.fixed-cta-lp2 a.web {
    background: #004d99;
}