﻿/*
 Theme Name:   Lightning Child
 Template:     lightning
 Description:  Lightning Child Theme
*/

/* --- Design Tokens --- */
:root {
    --color-navy: #0d1526;
    --color-gold: #c29958;
    --color-white: #ffffff;
    --color-gray: #f4f4f4;
    --color-wood: #b5946b;
    --color-wood-light: #f1e9da;
    --font-serif: "Shippori Mincho", serif;
    --font-sans: "Noto Sans JP", sans-serif;
}

.lp-header-logo {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 1000;
    width: 400px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.lp-header-logo a {
    display: block;
    width: 100%;
}

.lp-header-logo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.lp-header-logo a:hover img {
    transform: scale(1.02);
}

.lp-header-logo__nav {
    margin-top: 10px;
    text-align: right;
}

.lp-header-logo__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid var(--color-white);
}

.lp-header-logo__nav-link:hover {
    opacity: 0.7;
}

@media (max-width: 991px) {
    .lp-header-logo {
        top: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
    }

    .lp-header-logo__nav {
        text-align: center;
        margin-top: 5px;
    }
}

/* --- Global Styles --- */
.page-template-page-lp-video .site-main,
.page-template-page-lp-video .l-main,
.page-template-page-lp-video .mainSection {
    background-color: transparent !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.lp-video-page {
    font-family: var(--font-sans) !important;
    color: var(--color-navy);
}

.page-template-page-lp-video .site-header,
.page-template-page-lp-video .l-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent !important;
    position: fixed !important;
    width: 100%;
    z-index: 9999;
}

.page-template-page-lp-video .site-header.is-scrolled,
.page-template-page-lp-video .l-header.is-scrolled {
    background-color: var(--color-navy) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-template-page-lp-video .site-header:not(.is-scrolled) .vk-menu-acc button,
.page-template-page-lp-video .site-header:not(.is-scrolled) .gMenu>li>a,
.page-template-page-lp-video .site-header:not(.is-scrolled) .site-header-logo__text {
    color: #fff !important;
}


/* --- Hero Section --- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    background: #0d1526;
    padding-top: 120px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.lp-hero__video-wrap,
.lp-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lp-hero__slider {
    z-index: 0;
}

.lp-hero__video-wrap {
    z-index: 1;
}

.lp-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.lp-hero__slide.is-active {
    opacity: 1;
}

.lp-hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Decoration Elements */
.lp-hero__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(181, 148, 107, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 1;
}

.lp-hero__person-deco-wrap {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 100%;
    width: 50%;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

/* --- Hero Styles Cleaned Up --- */

.lp-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 21, 38, 0.9) 0%, rgba(13, 21, 38, 0.5) 50%, rgba(13, 21, 38, 0.2) 100%);
    pointer-events: none;
    z-index: 3;
}

.lp-hero__content {
    position: relative;
    z-index: 10;
    padding: 0 0;
    width: 100%;
    max-width: 1200px;
    text-align: left;
}

.lp-hero__badge {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.lp-hero__badge-text {
    background: rgba(181, 148, 107, 0.2);
    border: 1px solid var(--color-wood);
    color: var(--color-wood-light);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(5px);
}

.lp-hero__title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.0rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .lp-hero__title {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        position: relative;
        padding-left: 30px;
    }
}

.lp-hero__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background-color: var(--color-wood);
    box-shadow: 0 0 15px rgba(181, 148, 107, 0.5);
}

.lp-hero__title-main {
    font-size: 2.4rem;
    display: block;
    opacity: 0.95;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.lp-hero__title-sub {
    font-size: 4.2rem;
    display: block;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0;
}

.lp-hero__lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    letter-spacing: 0.1em;
    line-height: 2.2;
    max-width: 650px;
    padding: 15px 25px;
    background: rgba(13, 21, 38, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 0 15px 15px 0;
    border-left: 2px solid var(--color-gold);
}

/* --- Buttons --- */
.lp-btn {
    display: inline-flex;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.lp-btn--primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-wood) 100%);
    color: var(--color-navy);
    padding: 1.2rem 3.5rem;
    align-items: center;
    gap: 24px;
    border: none;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
    overflow: hidden;
}

.lp-btn--primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.5);
    color: var(--color-navy);
}

.lp-btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: 0.7s;
}

.lp-btn--primary:hover::after {
    left: 120%;
}

.lp-btn__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.lp-btn__text {
    font-size: 1.5rem;
    font-weight: 700;
}

.lp-btn__sub {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(30, 42, 74, 0.8);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.lp-btn__icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.lp-btn--primary:hover .lp-btn__icon {
    transform: translateX(5px);
}

/* --- Animations --- */
.js-enabled .u-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.js-enabled .u-reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

h1.lp-hero__title {
    line-height: 1em;
    padding: 0.5em;
}

.u-reveal--left {
    transform: translateX(-40px);
}

.u-reveal--right {
    transform: translateX(40px);
}

.u-reveal--left.is-visible,
.u-reveal--right.is-visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

[class*="delay-1"] {
    transition-delay: 0.1s;
}

[class*="delay-2"] {
    transition-delay: 0.2s;
}

[class*="delay-3"] {
    transition-delay: 0.3s;
}

[class*="delay-4"] {
    transition-delay: 0.4s;
}

[class*="delay-5"] {
    transition-delay: 0.5s;
}

.lp-hero__content {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-btn--primary:hover {
    background-color: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
}

/* --- Utility --- */
.u-sp-only {
    display: none;
}

@media (max-width: 767px) {
    .lp-hero {
        text-align: center;
        padding-top: 0px;
        min-height: auto;
        padding-bottom: 100px;
    }

    .lp-hero__content {
        text-align: center;
        padding-top: 180px;
    }

    .lp-hero__badge {
        justify-content: center;
    }

    .lp-hero__title {
        font-size: 2.8rem;
        padding-left: 0;
    }

    .lp-hero__title::before {
        display: none;
    }

    .lp-hero__title-main {
        font-size: 1.8rem;
    }

    .lp-hero__title-sub {
        font-size: 2.0rem;
    }

    .lp-hero__lead {
        font-size: 1.15rem;
        border-radius: 12px;
        border-left: none;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    .lp-btn--primary {
        padding: 1.2rem 2rem;
    }

    .lp-btn__text {
        font-size: 1.3rem;
    }

    .lp-hero__person-deco-wrap {
        position: absolute;
        width: 100%;
        height: 550px;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        align-items: flex-end;
    }

    .lp-hero__person-image {
        position: relative;
        right: auto;
        bottom: 0;
        transform: none;
        height: 95%;
        width: auto;
        object-position: bottom center;
        opacity: 1;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .lp-hero__person-circle {
        width: 280px;
        height: 280px;
        right: 50%;
        bottom: -50px;
        transform: translateX(50%);
        opacity: 0.6;
    }

    .lp-hero__person-accent {
        font-size: 3rem;
        top: auto;
        bottom: 40px;
        right: 5%;
        opacity: 0.5;
        writing-mode: vertical-rl;
    }

    .u-sp-only {
        display: block;
    }
}

/* Scroll Indicator */
.lp-hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
    z-index: 11;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Sections --- */
.lp-section {
    padding: 50px 0;
    text-align: center;
}

.lp-section__title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 0em;
}

.lp-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-wood);
}

.lp-sympathy {
    background-color: #fcfaf7;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lp-sympathy__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('asset/kyoto_cityscape_blur.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
    filter: grayscale(30%);
}

.lp-sympathy__header {
    margin-bottom: 40px;
    position: relative;
}

.lp-sympathy__subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--color-wood);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.lp-sympathy__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-sympathy__item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 1px solid rgba(181, 148, 107, 0.1);
    display: flex;
    flex-direction: column;
}

.lp-sympathy__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(181, 148, 107, 0.15);
    border-color: var(--color-wood);
}

.lp-sympathy__img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.lp-sympathy__img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.lp-sympathy__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lp-sympathy__item:hover .lp-sympathy__img-wrap img {
    transform: scale(1.1);
}

.lp-sympathy__card-inner {
    padding: 15px 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lp-sympathy__icon-box {
    width: 50px;
    height: 50px;
    background-color: #fdfaf5;
    color: var(--color-wood);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    margin-top: -55px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.lp-sympathy__icon-box svg {
    width: 24px;
    height: 24px;
}

.lp-sympathy__text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0;
}

.u-reveal--zoom {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.u-reveal--zoom.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.lp-sympathy__footer {
    margin-top: 50px;
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
}

.lp-sympathy__message-box {
    background-color: #fff;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(13, 21, 38, 0.08);
    border: 1px solid rgba(181, 148, 107, 0.15);
    position: relative;
}

.lp-sympathy__message-flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.lp-sympathy__message-image {
    flex: 0 0 340px;
    position: relative;
    margin-bottom: -140px;
    margin-right: -30px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lp-sympathy__message-image:hover {
    transform: translateY(-10px) scale(1.02);
}

.lp-sympathy__image-deco {
    position: absolute;
    bottom: 80px;
    left: 55%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(181, 148, 107, 0.18) 0%, rgba(181, 148, 107, 0) 75%);
    border-radius: 50%;
    z-index: -1;
}

.lp-sympathy__message-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    position: relative;
    z-index: 2;
}

.lp-sympathy__image-label {
    position: absolute;
    bottom: 120px;
    right: -10px;
    writing-mode: vertical-rl;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem;
    color: var(--color-wood);
    letter-spacing: 0.4em;
    opacity: 0.6;
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

.lp-sympathy__message-content {
    flex: 1;
}

/* Background Decoration Image */
.lp-sympathy__message-bg-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    background-image: url('asset/kyoto_landscape_premium.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    filter: sepia(100%) saturate(200%) hue-rotate(330deg);
}

.lp-sympathy__message-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    color: var(--color-wood);
    opacity: 0.8;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.lp-sympathy__message-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
    word-break: keep-all;
    overflow-wrap: normal;
}

.lp-sympathy__message-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.lp-sympathy__message-text:last-child {
    margin-bottom: 0;
}

.lp-sympathy__message-text strong {
    color: var(--color-navy);
    font-weight: 800;
    background: linear-gradient(transparent 70%, rgba(181, 148, 107, 0.2) 70%);
}

@media (max-width: 991px) {
    .lp-sympathy__list {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .lp-sympathy {
        padding: 80px 20px;
    }

    .lp-sympathy__img-wrap {
        height: 200px;
    }

    .lp-sympathy__message-box {
        padding: 40px 20px;
        overflow: hidden;
    }

    .lp-sympathy__message-flex {
        display: block;
        position: relative;
    }

    .lp-sympathy__message-image {
        float: right;
        position: relative;
        width: 140px;
        margin-left: 15px;
        margin-right: -5px;
        margin-top: 5px;
        margin-bottom: -10px;
        shape-outside: polygon(100% 0, 100% 100%, 0% 100%, 0% 50%, 40% 20%, 40% 0);
        shape-margin: 20px;
        z-index: 5;
        pointer-events: none;
    }

    .lp-sympathy__image-deco {
        width: 120px;
        height: 120px;
        bottom: 0;
        right: -10px;
        left: auto;
        transform: none;
    }

    .lp-sympathy__message-content {
        display: block;
    }

    .lp-sympathy__message-title {
        font-size: 1.4rem;
        line-height: 1.5;
        margin-bottom: 25px;
        text-align: left;
        word-break: keep-all;
        overflow-wrap: normal;
    }

    .lp-sympathy__message-text {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 15px;
        text-align: justify;
        letter-spacing: -1px;
    }

    .lp-sympathy__item {
        padding: 20px 25px;
        gap: 15px;
        border-radius: 20px;
    }

    .lp-sympathy__text {
        font-size: 1rem;
    }
}

.lp-comparison {
    background-color: #fcfbf9;
    padding: 50px 0;
    overflow: hidden;
}

.lp-comparison__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.lp-comparison__side {
    flex: 1;
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lp-comparison__side--ai {
    background: #f0f4f8;
    border: 1px solid #e1e8f0;
    color: #5a7184;
}

.lp-comparison__label {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lp-comparison__badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 2px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.lp-comparison__side--ai .lp-comparison__badge {
    background: #cbd5e0;
    color: #4a5568;
}

.lp-comparison__side--pro .lp-comparison__badge {
    background: var(--color-wood-light);
    color: var(--color-navy);
}

.lp-comparison__label-text {
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
}

.lp-comparison__visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.lp-comparison__ai-deco {
    width: 100%;
    height: 100%;
    background: #e1e8f0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-comparison__ai-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.lp-comparison__ai-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(66, 153, 225, 0.2), transparent);
    animation: scanner 3s linear infinite;
    z-index: 2;
}

@keyframes scanner {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(140px);
    }
}

.lp-comparison__ai-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.lp-comparison__criteria {
    background: #e1e8f0;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.lp-comparison__comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.lp-comparison__item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lp-comparison__item-label {
    font-weight: 600;
}

.lp-comparison__mark--bad {
    color: #e53e3e;
    font-weight: 900;
}

.lp-comparison__type-label {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.lp-comparison__side--ai .lp-comparison__type-label {
    background: #cbd5e0;
    color: #4a5568;
}

.lp-comparison__side--pro .lp-comparison__type-label {
    background: var(--wp--preset--color--vivid-red);
    color: #fff;
}

.lp-comparison__missing-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #718096;
    font-size: 1.2rem;
}

.lp-comparison__missing-item {
    padding: 4px 0;
    color: #a0aec0;
}

.lp-comparison__result {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 1.75rem;
    color: #5a7184;
}

.lp-comparison__vs {
    width: 60px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-comparison__vs-inner {
    background: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(181, 148, 107, 0.4);
    border: 3px solid var(--color-gold);
    margin-left: -30px;
    margin-right: -30px;
}

.lp-comparison__vs-text {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--color-wood);
    display: block;
}

.lp-comparison__vs-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-navy);
    white-space: nowrap;
    margin: 0;
}

.lp-comparison__side--pro {
    background: var(--color-navy);
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.lp-comparison__side--pro .lp-comparison__criteria {
    background: rgba(181, 148, 107, 0.2);
    border: 1px solid var(--color-wood);
    color: var(--color-wood-light);
}

.lp-comparison__pro-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--color-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(181, 148, 107, 0.4);
}

.lp-comparison__pro-icon svg {
    width: 40px;
    height: 40px;
}

.lp-comparison__mark--good {
    color: var(--color-wood-light);
    font-weight: 900;
}

.lp-comparison__plus {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    border: 1px dashed rgba(181, 148, 107, 0.4);
}

.lp-comparison__plus-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-wood-light);
}

.lp-comparison__plus-item {
    padding: 6px 0;
}

.lp-comparison__side--pro .lp-comparison__result {
    color: #fff;
}

.lp-comparison__side--pro .lp-comparison__result::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--color-wood);
    margin: 15px auto 0;
}

.lp-comparison__bottom-cta {
    margin-top: 40px;
    text-align: center;
}

.lp-comparison__cta-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 30px;
}

.lp-comparison__side--pro.is-visible .lp-comparison__plus-item {
    animation: fadeInUp 0.5s ease backwards;
}

.lp-comparison__side--pro.is-visible .lp-comparison__plus-item:nth-child(2) {
    animation-delay: 0.2s;
}

.lp-comparison__side--pro.is-visible .lp-comparison__plus-item:nth-child(3) {
    animation-delay: 0.4s;
}

.lp-comparison__side--pro.is-visible .lp-comparison__plus-item:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .lp-comparison__grid {
        flex-direction: column;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-comparison__vs {
        height: 60px;
        width: 100%;
        margin: 20px 0;
    }

    .lp-comparison__vs-inner {
        margin: 0;
        width: 120px;
        height: 120px;
    }

    .lp-comparison__vs-text {
        font-size: 1.6rem;
    }

    .lp-comparison__vs-sub {
        font-size: 0.75rem;
        max-width: 90px;
    }

    .lp-comparison__side {
        padding: 40px 25px;
    }
}

.lp-benefits {
    position: relative;
    padding: 50px 0;
    background-color: #fcfcfc;
    z-index: 1;
    overflow: hidden;
}

.lp-benefits__content {
    max-width: 900px;
    margin: 0 auto;
}

.lp-benefits__lead {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-navy);
}

.lp-benefits__text {
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
}

@media (max-width: 767px) {
    .lp-section {
        padding: 30px 20px;
    }

    .lp-section__title {
        font-size: 1.8rem;
    }

    .lp-benefits__lead {
        font-size: 1.1rem;
    }
}

.lp-reasons {
    background-color: var(--color-white);
}

.lp-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.lp-reasons__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.lp-reasons__img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.lp-reasons__icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lp-reasons__item:hover .lp-reasons__icon {
    transform: scale(1.05);
}

.lp-reasons__content-inner {
    padding: 30px;
}

.lp-reasons__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    opacity: 0.9;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lp-reasons__item-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--color-navy);
    text-align: left;
}

.lp-reasons__item-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .lp-reasons__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 20px auto 0;
    }
}

.lp-voices {
    background-color: #fdfaf5;
    padding: 50px 0;
}

.lp-voices__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.lp-voices__item {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #f1e9da;
    display: flex;
    flex-direction: column;
}

.lp-voices__header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
}

.lp-voices__profile {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fdfaf5;
    background-color: #fff;
}

.lp-voices__profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-voices__info {
    text-align: left;
}

.lp-voices__author {
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 6px;
}

.lp-voices__meta {
    display: inline-block;
    background-color: var(--color-navy);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    position: relative;
    border-left: 4px solid var(--color-wood);
}

.lp-voices__text-wrapper {
    padding: 0 30px 0px;
}

.lp-voices__text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    text-align: left;
    position: relative;
    padding: 20px;
    background-color: #fdfaf5;
    border-radius: 12px;
}

.lp-voices__text::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 30px;
    border-width: 0 15px 15px 15px;
    border-style: solid;
    border-color: transparent transparent #fdfaf5 transparent;
}

@media (max-width: 767px) {
    .lp-voices__grid {
        grid-template-columns: 1fr;
    }
}

.lp-cta {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 20px 20px;
    text-align: center;
}

.lp-cta .lp-section__title {
    color: var(--color-white);
}

.lp-cta__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.lp-cta__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 10px auto 10px;
    width: 100%;
}

.lp-cta__btn {
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-cta__btn--form {
    background-color: var(--color-wood);
    color: var(--color-navy);
}

.lp-cta__btn--line {
    background-color: #06c755;
    color: #fff;
}

.lp-cta__btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
    color: #fff;
}

.lp-cta__tel-box {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-cta__tel-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lp-cta__tel-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    color: var(--color-wood);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.lp-cta__tel-time {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.lp-cta__text-wrap {
    flex: 1;
}

.lp-cta__person {
    flex: 0 0 320px;
    position: relative;
    align-self: flex-end;
    margin-bottom: -20px;
}

.lp-cta__person-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@media (max-width: 991px) {
    .lp-cta__content {
        display: grid;
        grid-template-columns: 1fr 160px;
        gap: 0 20px;
        text-align: left;
    }

    .lp-cta__text-wrap {
        display: contents;
    }

    .lp-cta .lp-section__title,
    .lp-cta__btns {
        grid-column: 1 / -1;
    }

    .lp-cta__tel-box {
        grid-column: 1;
        margin-top: 30px;
        padding-top: 30px;
    }

    .lp-cta__person {
        grid-column: 2;
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: -50px;
        align-self: end;
    }

    .lp-cta .lp-section__title {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
    }

}

@media (max-width: 767px) {
    .lp-cta__content {
        grid-template-columns: 1fr 110px;
        gap: 0 10px;
    }

    .lp-cta__tel-number {
        font-size: 1.8rem;
    }

    .lp-cta .lp-section__title {
        font-size: 1.4rem;
    }

    .lp-cta__tel-box {
        margin-top: 25px;
        padding-top: 25px;
    }

    .lp-cta__tel-time {
        font-size: 1rem;
    }
}

.lp-flow {
    background-color: #fafafa;
    padding: 100px 0;
}

.lp-flow__list {
    max-width: 1200px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .lp-flow__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-flow__item {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.lp-flow__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-wood);
}

.lp-flow__item-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-flow__image-wrap {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    order: -1;
}

.lp-flow__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lp-flow__item:hover .lp-flow__image-wrap img {
    transform: scale(1.1);
}

.lp-flow__step {
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background-color: var(--color-wood);
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.lp-flow__item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-navy);
    line-height: 1.4;
}

.lp-flow__item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.lp-flow__sub-content {
    background-color: #fcfcfc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px dashed #ddd;
    font-size: 0.9rem;
}

.lp-flow__sub-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
    color: var(--color-navy);
}

.lp-flow__point {
    background-color: rgba(181, 148, 107, 0.05);
    border: 1px solid rgba(181, 148, 107, 0.2);
    padding: 15px;
    font-size: 0.95rem;
    margin-top: 15px;
    border-radius: 8px;
    position: relative;
    color: #666;
}

@media (max-width: 767px) {
    .lp-flow {
        padding: 20px 0;
    }

    .lp-flow__list {
        display: flex;
        align-items: stretch;
        overflow-x: auto;
        padding: 20px 20px 40px;
        gap: 20px;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20px;
        margin: 40px 0 0;
        -webkit-overflow-scrolling: touch;
    }

    .lp-flow__list::-webkit-scrollbar {
        height: 6px;
    }

    .lp-flow__list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .lp-flow__list::-webkit-scrollbar-thumb {
        background: var(--color-wood);
        border-radius: 10px;
    }

    .lp-flow__item {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 25px;
    }

    .lp-flow__item-title {
        font-size: 1.2rem;
    }

    .lp-flow__image-wrap {
        height: 200px;
    }
}

.lp-faq {
    background-color: #fdfdfd;
    padding: 30px 0;
}

.lp-faq__category {
    margin-bottom: 80px;
}

.lp-faq__category:last-child {
    margin-bottom: 0;
}

.lp-faq__category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-wood);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.lp-faq__category-title::before,
.lp-faq__category-title::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--color-wood);
    opacity: 0.5;
}

.lp-faq__list {
    max-width: 850px;
    margin: 0 auto;
}

.lp-faq__item {
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lp-faq__item:hover {
    border-color: var(--color-wood);
}

.lp-faq__question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    user-select: none;
}

.lp-faq__q-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-wood);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.lp-faq__toggle {
    margin-left: auto;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
}

.lp-faq__toggle::before,
.lp-faq__toggle::after {
    content: '';
    position: absolute;
    background-color: #ccc;
    transition: all 0.3s ease;
}

.lp-faq__toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.lp-faq__toggle::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lp-faq__item.is-active .lp-faq__toggle {
    transform: rotate(45deg);
}

.lp-faq__item.is-active .lp-faq__toggle::before,
.lp-faq__item.is-active .lp-faq__toggle::after {
    background-color: var(--color-wood);
}

.lp-faq__answer {
    padding: 0 30px;
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    opacity: 0;
}

.lp-faq__item.is-active .lp-faq__answer {
    max-height: 1000px;
    /* Large enough value */
    padding-bottom: 30px;
    opacity: 1;
}

@media (max-width: 767px) {
    .lp-faq {
        padding: 30px 20px;
    }

    .lp-faq__category-title {
        font-size: 1.2rem;
    }

    .lp-faq__question {
        padding: 20px;
        font-size: 1.2rem;
    }

    .lp-faq__answer {
        padding: 0 20px 20px 25px;
        font-size: 1.2rem;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.lp-footer {
    background-color: var(--color-navy);
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #fff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.lp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-wood), transparent, var(--color-wood));
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.lp-footer__logo {
    margin-bottom: 40px;
}

.lp-footer__logo a {
    display: block;
    width: fit-content;
}

.lp-footer__logo img {
    height: 120px;
    transition: transform 0.4s ease;
}

.lp-footer__logo img:hover {
    transform: translateY(-3px);
}

.lp-footer__nav {
    margin-bottom: 30px;
}

.lp-footer__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.lp-footer__nav-link:hover {
    color: var(--color-wood-light);
}

.lp-footer__nav-link::before {
    content: '▶';
    font-size: 0.7rem;
    color: var(--color-wood-light);
}

.lp-footer__address {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: center;
    padding-top: 1rem;
}

.lp-footer__address svg {
    width: 20px;
    height: 20px;
    color: var(--color-wood-light);
    flex-shrink: 0;
    margin-top: 4px;
}

.lp-footer__offices-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-wood-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-footer__offices-title::after {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(181, 148, 107, 0.3);
}

.lp-footer__offices-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.lp-footer__offices-list li {
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.lp-footer__offices-list li:hover {
    color: #fff;
}

.lp-footer__offices-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--color-wood);
}

.lp-footer__map-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer__map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    filter: grayscale(100%) invert(90%) contrast(90%);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.lp-footer__map-wrapper:hover iframe {
    opacity: 1;
    filter: grayscale(0%) invert(0%) contrast(100%);
}

.lp-footer__copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    letter-spacing: 0.08em;
}

@media (max-width: 991px) {
    .lp-footer {
        padding: 80px 0 40px;
    }

    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lp-footer__offices-list {
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .lp-footer__offices-list {
        grid-template-columns: 1fr;
    }

    .lp-footer__logo img {
        height: 100px;
    }
}

.lp-contact-page {
    background-color: #fdfaf5;
    color: var(--color-navy);
}

.lp-contact-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 30% 50%, #1e2a4a 0%, #0d1526 100%);
    color: #fff;
    text-align: center;
    position: relative;
}

.lp-contact-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lp-contact-hero__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--color-wood);
    text-transform: uppercase;
}

.lp-contact-hero__lead {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.lp-contact-form-section {
    padding: 20px 0;
    margin-top: 0px;
    position: relative;
    z-index: 10;
}

.lp-contact-form-wrapper {
    background: #fff;
    padding: 30px 60px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(181, 148, 107, 0.15);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(181, 148, 107, 0.1);
}

.c-val-form__row {
    margin-bottom: 35px;
}

.c-val-form__label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.u-required,
.u-optional {
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.u-required {
    background: #e74c3c;
    color: #fff;
}

.u-optional {
    background: #f1f2f6;
    color: #7f8c8d;
}

.c-val-form__field input[type="text"],
.c-val-form__field input[type="email"],
.c-val-form__field input[type="tel"],
.c-val-form__field select,
.c-val-form__field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fbfd;
}

.c-val-form__field input:focus,
.c-val-form__field select:focus,
.c-val-form__field textarea:focus {
    outline: none;
    border-color: var(--color-wood);
    box-shadow: 0 0 0 4px rgba(181, 148, 107, 0.15);
    background-color: #fff;
}

.c-val-form__optional-group {
    background: #fcfcfc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px dashed #ddd;
}

.c-val-form__optional-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.c-val-form__submit {
    text-align: center;
    margin-top: 50px;
}

.c-val-form__submit .lp-btn {
    border: none;
    cursor: pointer;
    min-width: 280px;
    justify-content: center;
    width: 100%;
}

/* --- Company Page Styles --- */
.lp-company-page {
    background-color: #fdfaf5;
    color: var(--color-navy);
}

.lp-company-hero {
    background-color: var(--color-navy);
    padding: 180px 0 100px;
    background-image:
        linear-gradient(rgba(13, 21, 38, 0.8), rgba(13, 21, 38, 0.8)),
        url('asset/arashiyama_3.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.lp-company-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.lp-company-hero__sub {
    display: block;
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lp-company-hero__lead {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 900;
}

.lp-company-info-section {
    padding: 20px 0;
}

.lp-company-card {
    background: #fff;
    padding: 60px 60px;
    border-radius: 4px;
    /* Shaper corners for a traditional feel */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #b5946b;
    /* Washi Texture Background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' fill='%23ffffff'/%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Double border effect */
.lp-company-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(181, 148, 107, 0.3);
    pointer-events: none;
    border-radius: 2px;
}

.lp-company-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    z-index: 1;
}

.lp-company-table th,
.lp-company-table td {
    padding: 35px 40px;
    border-bottom: 1px solid rgba(181, 148, 107, 0.15);
    text-align: left;
}

.lp-company-table th {
    width: 320px;
    background-color: rgba(252, 250, 245, 0.5);
    vertical-align: top;
    position: relative;
}

.lp-company-table__th-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.lp-company-table__icon {
    width: 18px;
    height: 18px;
    color: #b5946b;
    flex-shrink: 0;
    margin-top: 4px;
}

.lp-company-table__label {
    display: flex;
    flex-direction: column;
}

.lp-company-table__en {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: #b5946b;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1;
}

.lp-company-table__ja {
    font-size: 1.15rem;
    color: var(--color-navy);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.lp-company-table td {
    color: var(--color-navy);
    font-size: 1.2rem;
    line-height: 1.9;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.lp-company-table tr:last-child th,
.lp-company-table tr:last-child td {
    border-bottom: none;
}

.lp-company-extra {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px double #b5946b;
}

.lp-company-extra__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-navy);
    letter-spacing: 0.1em;
    position: relative;
}

.lp-company-extra__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #b5946b;
    margin: 15px auto 0;
}

@media (max-width: 991px) {
    .lp-company-hero {
        padding: 140px 0 60px;
    }

    .lp-company-hero__title {
        font-size: 2.25rem;
    }

    .lp-company-info-section {
        padding: 20px 0;
    }

    .lp-company-card {
        padding: 20px 20px;
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    /* Adjust double border for mobile */
    .lp-company-card::after {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }

    .lp-company-table th,
    .lp-company-table td {
        display: block;
        width: 100% !important;
        padding: 20px 15px;
        border-bottom: none;
    }

    .lp-company-table th {
        background-color: rgba(252, 250, 245, 0.8);
        padding-bottom: 5px;
    }

    .lp-company-table td {
        border-bottom: 1px solid rgba(181, 148, 107, 0.1);
        margin-bottom: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1.1rem;
        line-height: 1.7rem;
    }

    .lp-company-table tr:last-child td {
        border-bottom: none;
        margin-bottom: 0;
    }

    .lp-company-table__th-inner {
        gap: 10px;
    }

    .lp-company-table__en {
        font-size: 0.65rem;
    }

    .lp-company-table__ja {
        font-size: 1rem;
    }

    .lp-company-extra {
        margin-top: 30px;
        padding-top: 30px;
    }

    .lp-company-extra__title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
}

.lp-contact-support {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.lp-contact-support__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(181, 148, 107, 0.3);
    border-radius: 20px;
}

.lp-contact-support__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lp-contact-support__tel {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-navy);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.lp-contact-support__time {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .lp-contact-hero {
        padding: 120px 20px 80px;
    }

    .lp-contact-hero__title {
        font-size: 2rem;
    }

    .lp-contact-form-wrapper {
        padding: 20px 20px;
    }

    .lp-contact-form-section {
        margin-top: 0px;
    }

    .c-val-form__optional-group {
        padding: 20px;
    }

    .lp-contact-support__tel {
        font-size: 2rem;
    }

    .lp-contact-support__inner {
        padding: 40px 20px;
    }
}

.lp-thanks-page {
    background-color: #fdfaf5;
    min-height: 100vh;
}

.lp-thanks-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #fdfaf5 0%, #f6f1e9 100%);
    overflow: hidden;
}

.lp-thanks-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('asset/kyoto_cityscape_blur.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.lp-thanks-hero__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--color-wood);
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lp-thanks-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lp-thanks-hero__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--color-wood);
    text-transform: uppercase;
}

.lp-thanks-hero__message {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.lp-thanks-steps {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.lp-thanks-steps__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-navy);
    position: relative;
    padding-bottom: 15px;
}

.lp-thanks-steps__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-wood);
}

.lp-thanks-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-thanks-steps__item {
    background: #fdfaf5;
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(181, 148, 107, 0.1);
    transition: all 0.4s ease;
}

.lp-thanks-steps__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(181, 148, 107, 0.1);
    border-color: var(--color-wood);
}

.lp-thanks-steps__num {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--color-wood);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(181, 148, 107, 0.3);
}

.lp-thanks-steps__item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.lp-thanks-steps__item-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.lp-thanks-footer-cta {
    padding: 80px 0;
    text-align: center;
    background: #fdfaf5;
}

@media (max-width: 991px) {
    .lp-thanks-steps__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .lp-thanks-hero {
        padding: 140px 20px 80px;
    }

    .lp-thanks-hero__title {
        font-size: 1.8rem;
    }

    .lp-thanks-hero__message {
        font-size: 1rem;
    }

    .lp-thanks-steps {
        padding: 80px 20px;
    }

    .lp-thanks-steps__item {
        padding: 50px 30px 40px;
    }
}

.lp-floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--color-wood);
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-floating-banner.is-active {
    transform: translateY(0);
}

.lp-floating-banner__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.lp-floating-banner__btn-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lp-floating-banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    height: 56px;
    padding: 0 32px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.lp-floating-banner__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lp-floating-banner__btn--form {
    background: linear-gradient(135deg, #e5c158 0%, #b5946b 100%);
    color: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lp-floating-banner__btn--line {
    background: linear-gradient(135deg, #07d25a 0%, #05a044 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-floating-banner__icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    padding: 5px;
}

.lp-floating-banner__btn--line .lp-floating-banner__icon {
    background: rgba(0, 0, 0, 0.1);
}

.lp-floating-banner__text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lp-floating-banner__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 30px;
    border-left: 1px solid rgba(181, 148, 107, 0.3);
}

.lp-floating-banner__tel-label {
    font-size: 0.75rem;
    color: var(--color-navy);
    margin-bottom: 2px;
    font-weight: 700;
    opacity: 0.8;
}

.lp-floating-banner__tel-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.lp-floating-banner__tel-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-wood);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}

.lp-floating-banner__tel-time {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

.lp-floating-banner__btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: lightSweep 4s infinite;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }

    25% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@media (max-width: 1100px) {
    .lp-floating-banner__inner {
        gap: 15px;
        padding: 0 10px;
    }

    .lp-floating-banner__btn {
        padding: 0 15px;
        height: 52px;
    }

    .lp-floating-banner__tel {
        padding-left: 15px;
    }

    .lp-floating-banner__tel-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .lp-floating-banner {
        padding: 12px 0 15px;
    }

    .lp-floating-banner__inner {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
    }

    .lp-floating-banner__btn-group {
        width: 100%;
        gap: 10px;
    }

    .lp-floating-banner__btn {
        flex: 1;
        padding: 0 5px;
        border-radius: 12px;
        height: 50px;
    }

    .lp-floating-banner__text {
        font-size: 0.95rem;
    }

    .lp-floating-banner__icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }

    .lp-floating-banner__tel {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(181, 148, 107, 0.15);
        padding-top: 10px;
        margin-top: 5px;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }

    .lp-floating-banner__tel-label {
        display: none;
    }

    .lp-floating-banner__tel-number {
        font-size: 1.5rem;
    }
}

.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .pc-only {
        display: inline;
    }
}