.elementor-4037 .elementor-element.elementor-element-9dd49b2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0a08604 */@charset "UTF-8";

/* ==========================================================================
   YulumiラチE統吁EP CSS (Elementor用)
   Color: #9F8C7D (Primary)
   ========================================================================== */
:root {
    --lp-color-primary: #9F8C7D;
    --lp-color-primary-light: #F2EFE9;
    --lp-color-primary-dark: #6D5D52;
    --lp-color-text-body: #4A4238;
    --lp-color-text-heading: #502220;
    --lp-color-bg-white: #FFFFFF;
    --lp-color-accent: #D4C5BB;
    --lp-font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --lp-font-sans: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --lp-radius: 12px;
    --lp-shadow: 0 5px 25px rgba(159, 140, 125, 0.15);
    --lp-gradient-bg: linear-gradient(135deg, #ffffff 0%, #fdfbf9 100%);
    --lp-gradient-gold: linear-gradient(135deg, #d4c5bb 0%, #bcaaa4 100%);
    --lp-shadow-premium: 0 10px 30px rgba(159, 140, 125, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    --lp-border-gold: 1px solid #e0d0c0;
}

/* Container and NAV */
.lp-voice-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.lp-voice-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Tab Buttons */
.lp-tab-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    color: #8a7b6e;
    transition: all 0.3s;
    border: 2px solid #e0d0c0;
    font-size: 0.95rem;
    outline: none;
    appearance: none;
}

.lp-tab-btn:hover {
    background: #f9f5f0;
    transform: translateY(-2px);
}

.lp-tab-btn.is-active {
    background: var(--lp-color-primary, #9F8C7D);
    color: #fff;
    border-color: var(--lp-color-primary, #9F8C7D);
    box-shadow: 0 4px 15px rgba(159, 140, 125, 0.4);
}

/* Tab Content Area */
.lp-tab-content {
    display: none;
    text-align: left;
    animation: fadeInTab 0.5s ease;
}

.lp-tab-content.is-active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Voice Card Styling */
.lp-voice-card {
    background: #fff;
    border: 1px solid #f0e6e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    margin-bottom: 20px;
}

.lp-voice-card::before {
    content: "VOICE";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #6D5D52;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.lp-voice-title {
    font-weight: bold;
    font-size: 1.15rem;
    color: #502220;
    margin-bottom: 15px;
    line-height: 1.5;
    border-bottom: 2px dotted #e0d0c0;
    padding-bottom: 12px;
    margin-top: 10px;
}

.lp-voice-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Wrapper & Layout */
.lp-content-wrapper {
    font-family: var(--lp-font-sans);
    color: var(--lp-color-text-body);
    line-height: 1.9;
    font-size: 16px;
    overflow-x: hidden;
}

.lp-content-wrapper * {
    box-sizing: border-box;
}

.lp-content-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Premium Design Classes */
.lp-premium-card {
    background: var(--lp-gradient-bg);
    box-shadow: var(--lp-shadow-premium);
    border: var(--lp-border-gold);
    border-radius: var(--lp-radius);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.lp-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--lp-gradient-gold);
}

.lp-text-gradient {
    background: linear-gradient(45deg, var(--lp-color-primary-dark), #9F8C7D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Grids & Flex - RESPONSIVE FIXES */
.lp-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-flex-col {
    flex: 1;
    min-width: 280px;
    /* Ensure wrapping on small screens */
}

/* Responsive Grid System */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Mobile adjustments for Grids */
@media (max-width: 900px) {
    .lp-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }
}

@media (max-width: 600px) {

    .lp-grid-3,
    .lp-grid-2 {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }

    .lp-premium-card {
        padding: 25px 20px;
        /* Less padding on mobile */
    }

    .lp-voice-nav {
        gap: 10px;
    }

    .p-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Lists - CHECKMARK FIX */
.lp-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.lp-check-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f0eb;
    display: flex;
    /* Flexbox for alignment */
    align-items: flex-start;
    /* Align top */
    gap: 12px;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Pseudo-element for checkmark icon */
.lp-check-item::before {
    content: "✁E;
    color: var(--lp-color-primary);
    font-weight: bold;
    flex-shrink: 0;
    /* Prevent shrinking */
    margin-top: 2px;
    /* Fine-tune optical alignment */
}

/* Image Frame - ASPECT RATIO FIX */
.lp-image-frame {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eee;
    /* Allow height to accommodate tall images without cropping/stretching excessively */
    height: auto;
    min-height: 200px;
}

.lp-image-frame img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
}

/* Profile Adjustments */
.lp-profile-img-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Headings */
.lp-content-wrapper h2 {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.lp-content-wrapper h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--lp-color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lp-content-wrapper h3 {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    margin-top: 30px;
    margin-bottom: 20px;
}

/* ROI Table */
.lp-roi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    box-shadow: var(--lp-shadow);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.lp-roi-table th {
    background-color: var(--lp-color-primary);
    color: white;
    padding: 15px;
    font-family: var(--lp-font-serif);
}

.lp-roi-table td {
    background-color: white;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.lp-roi-table .highlight-cell {
    color: #C0392B;
    font-weight: bold;
    background-color: #FFFDF9;
}

/* Service Comparison Table */
.lp-service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    box-shadow: var(--lp-shadow);
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: #fff;
}

.lp-service-table th {
    background-color: var(--lp-color-primary-dark);
    color: white;
    padding: 18px 12px;
    font-family: var(--lp-font-serif);
    font-weight: bold;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.lp-service-table th:last-child {
    border-right: none;
}

.lp-service-table td {
    padding: 18px 12px;
    border-bottom: 1px solid #f0e6e0;
    border-right: 1px solid #f0e6e0;
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.lp-service-table td:last-child {
    border-right: none;
}

.lp-service-table tr:last-child td {
    border-bottom: none;
}

.lp-service-table tr:nth-child(even) {
    background-color: #faf8f6;
}

.lp-service-table .plan-name {
    font-weight: bold;
    color: var(--lp-color-text-heading);
    text-align: center;
}

/* プラン別ヘッダーの背景色と斁E��色を改喁E*/
.lp-service-table th.plan-standard {
    background-color: #6D5D52;
    color: white;
    background: linear-gradient(135deg, #6D5D52 0%, #5a4d44 100%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-service-table th.plan-gold {
    background-color: #8B7355;
    color: white;
    background: linear-gradient(135deg, #8B7355 0%, #7a6348 100%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-service-table th.plan-premium {
    background-color: #9F8C7D;
    color: white;
    background: linear-gradient(135deg, #9F8C7D 0%, #8a7b6e 100%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* プラン別のセル背景色�E�データ行！E*/
.lp-service-table .plan-standard {
    background-color: #f9f9f9;
}

.lp-service-table .plan-gold {
    background-color: #fffbf0;
}

.lp-service-table .plan-premium {
    background-color: #fff8e1;
}

/* Highlight Box */
.lp-highlight-box {
    background-color: var(--lp-color-primary-light);
    padding: 30px;
    border-radius: var(--lp-radius);
    margin: 30px 0;
}

/* Button */
.lp-btn-inner {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(135deg, #9F8C7D 0%, #8a7b6e 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(159, 140, 125, 0.4);
}

.lp-btn-inner:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(159, 140, 125, 0.5);
}

/* Hero Section */
.lp-hero {
    padding: 80px 0;
    background: var(--lp-gradient-bg);
}

.lp-badge {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #502220 0%, #6D5D52 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 25px rgba(80, 34, 32, 0.4);
    margin-bottom: 30px;
}

.lp-catchphrase {
    font-family: var(--lp-font-serif);
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.6;
    color: var(--lp-color-text-heading);
    margin-bottom: 30px;
}

.lp-customer-voice-box {
    position: relative;
    background: #f8f6f4;
    padding: 30px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 780px;
    text-align: left;
    font-style: italic;
    line-height: 2;
    color: #4a4a4a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.lp-jin-message {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    line-height: 2;
}

.lp-jin-message img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--lp-color-primary);
    object-fit: cover;
}

/* Card Styles */
.lp-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--lp-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e6e0;
}

/* Container Styles */
.lp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-container-center {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.lp-container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.lp-section {
    padding: 60px 0;
}

.lp-section-large {
    padding: 80px 0;
}

.lp-section-bg-light {
    background-color: var(--lp-color-primary-light);
}

.lp-section-bg-gray {
    background-color: #faf8f6;
}

.lp-section-bg-gradient {
    background: linear-gradient(135deg, #9F8C7D 0%, #6D5D52 100%);
    color: white;
}

/* Text Styles */
.lp-text-subhead {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 2.2;
    color: #555;
    margin-bottom: 50px;
    text-align: center;
}

.lp-text-heading-color {
    color: var(--lp-color-text-heading);
}

.lp-text-red {
    color: #C0392B;
}

.lp-text-bold {
    font-weight: bold;
}

.lp-text-large {
    font-size: 1.2rem;
}

.lp-text-xlarge {
    font-size: 1.3rem;
}

.lp-text-xxlarge {
    font-size: 1.5rem;
}

/* Box Styles */
.lp-box-benefit {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: var(--lp-color-primary-light);
    border-radius: 10px;
}

.lp-box-white {
    background: white;
    padding: 40px;
    border-radius: var(--lp-radius);
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Profile Styles */
.lp-profile-img-wrapper {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(159, 140, 125, 0.2);
}

.lp-profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-profile-name {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.3rem;
}

.lp-profile-list {
    list-style: none;
    padding: 0;
    line-height: 2.2;
    margin-bottom: 20px;
    font-size: 1rem;
}

.lp-profile-list li {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.lp-profile-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lp-profile-description {
    line-height: 1.8;
    color: #555;
}

/* Feature Number Circle */
.lp-feature-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--lp-color-primary);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

/* Before/After Box */
.lp-before-after-box {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.lp-before-after-box p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.lp-cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

.lp-cta-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 30px;
}

.lp-cta-subtext {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 40px;
}

.lp-cta-box {
    background: white;
    color: var(--lp-color-text-body);
    padding: 40px;
    border-radius: var(--lp-radius);
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-cta-box h3 {
    color: var(--lp-color-text-heading);
    margin-bottom: 20px;
}

.lp-cta-box p {
    line-height: 2;
    margin-bottom: 20px;
}

.lp-cta-box .lp-text-bold {
    font-weight: bold;
    color: var(--lp-color-primary);
}

.lp-cta-box .lp-text-info {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.lp-btn-cta {
    background: white;
    color: var(--lp-color-primary);
    font-size: 1.2rem;
    padding: 25px 50px;
}

/* Image Frame Styles */
.lp-image-frame-4-3 {
    aspect-ratio: 4/3;
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
}

/* List Styles */
.lp-list-left {
    text-align: left;
}

/* Table Overflow */
.lp-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

/* Feature Card Styles */
.lp-feature-card {
    text-align: center;
}

.lp-feature-card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.lp-feature-card p {
    text-align: left;
    line-height: 1.8;
}

.lp-feature-number-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

/* Support Box Styles */
.lp-support-box {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}

.lp-support-box h3 {
    text-align: center;
    margin-bottom: 30px;
}

.lp-support-item {
    text-align: center;
    padding: 20px;
}

.lp-support-item h4 {
    color: var(--lp-color-primary);
    margin-bottom: 15px;
}

.lp-support-item p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #C0392B;
}

/* Premium Card Special */
.lp-premium-card-special {
    margin-top: 50px;
}

.lp-premium-card-special h3 {
    text-align: center;
    margin-bottom: 30px;
}

.lp-premium-card-special p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.lp-premium-card-special .lp-check-list {
    max-width: 800px;
    margin: 0 auto;
}

.lp-premium-card-special .lp-text-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Month Change Card Styles */
.lp-month-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--lp-color-text-heading);
}

.lp-month-card-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--lp-color-primary);
}

.lp-month-card-description {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Heading Subtitle */
.lp-heading-subtitle {
    font-size: 0.7em;
    color: #C0392B;
}

.lp-heading-subtitle-small {
    font-size: 0.8em;
    color: #C0392B;
}

/* Text Center */
.lp-text-center {
    text-align: center;
}

.lp-text-center-large {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 2;
}

/* Grid Margin Top */
.lp-grid-margin-top {
    margin-top: 40px;
}

/* Final Message Styles */
.lp-final-message {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--lp-color-text-heading);
    margin-top: 30px;
}

/* FAQ Content Styles */
.lp-faq-content-list {
    margin-top: 15px;
    padding-left: 20px;
    line-height: 2;
}

.lp-faq-content-list-spaced {
    margin-bottom: 30px;
    padding-left: 20px;
    line-height: 2;
}

.lp-faq-content-paragraph {
    margin-bottom: 20px;
}

.lp-faq-content-center {
    margin-top: 30px;
    font-weight: bold;
    text-align: center;
}

/* Voice Section Styles */
.lp-voice-section {
    background-color: #fffcf5;
    padding: 80px 0;
}

.lp-voice-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.lp-voice-section-intro {
    text-align: center;
    margin-bottom: 50px;
    line-height: 2;
}

.lp-voice-section-note {
    margin-top: 30px;
    font-size: 0.9rem;
    text-align: center;
}

/* Chapter Content Styles */
.lp-chapter-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 2;
}

.lp-chapter-list {
    line-height: 2;
    padding-left: 20px;
}

/* Staff Section Styles */
.staff-section {
    padding: 60px 0;
    background-color: #faf8f6;
}

.staff-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.staff-section-title {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    margin-bottom: 40px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.staff-section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--lp-color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.staff-card {
    background: var(--lp-gradient-bg);
    box-shadow: var(--lp-shadow-premium);
    border: var(--lp-border-gold);
    border-radius: var(--lp-radius);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--lp-gradient-gold);
}

.staff-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--lp-color-primary-dark);
    color: white;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.staff-name {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.staff-card img {
    width: 100%;
    height: auto;
    border-radius: var(--lp-radius);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.staff-catchphrase {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--lp-color-primary);
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--lp-color-primary-light);
    border-radius: var(--lp-radius);
    line-height: 1.8;
}

.staff-profile {
    margin-bottom: 30px;
    line-height: 2;
}

.staff-profile p {
    margin-bottom: 20px;
}

.staff-message {
    padding: 30px;
    background: white;
    border-radius: var(--lp-radius);
    border-left: 4px solid var(--lp-color-primary);
    line-height: 2;
}

.staff-message p {
    margin-bottom: 20px;
}

.staff-message p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {

    .lp-grid-3,
    .lp-grid-4 {
        grid-template-columns: 1fr;
    }

    .lp-content-wrapper h2 {
        font-size: 1.5rem;
    }

    .lp-service-table {
        font-size: 0.85rem;
    }

    .lp-service-table th,
    .lp-service-table td {
        padding: 12px 8px;
    }
}

/* ======================================== 
   Accordion & FAQ 
======================================== */
.lp-accordion {
    border-top: 2px solid #f0e6e0;
}

.lp-accordion-item {
    border-bottom: 1px solid #f0e6e0;
}

.lp-accordion-item[open] {
    background-color: #faf8f6;
}

.lp-accordion-summary {
    padding: 25px 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: background-color 0.2s;
    font-size: 1.1rem;
    line-height: 1.5;
}

.lp-accordion-summary:hover {
    background-color: #faf8f6;
}

.lp-accordion-summary::-webkit-details-marker {
    display: none;
}

/* Custom Q marker */
.lp-faq-q {
    color: var(--lp-color-primary);
    font-size: 1.3rem;
    line-height: 1.2;
    flex-shrink: 0;
    font-family: var(--lp-font-serif);
}

.lp-faq-text {
    flex-grow: 1;
}

.lp-accordion-content {
    padding: 0 20px 30px 50px;
    color: #555;
    line-height: 1.8;
}

/* Mobile tweak */
@media (max-width: 600px) {
    .lp-accordion-content {
        padding: 0 20px 30px 20px;
    }
}

/* ======================================== 
   Custom Icons (CSS Only)
======================================== */
.lp-video-placeholder {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #6D5D52 0%, #502220 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(80, 34, 32, 0.2);
    border: 2px solid #8a7b6e;
}

/* Play button triangle */
.lp-video-placeholder::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Tape/Film styling details */
.lp-video-placeholder::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 15px;
    right: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* ======================================== 
   Categorized Customer Voices Section (Carousel) 
======================================== */
.lp-voice-tabs {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Carousel Container */
.lp-voice-carousel-container {
    margin-bottom: 40px;
    padding: 20px 0;
}

.lp-voice-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-color-primary, #A0522D) #f0f0f0;
    padding: 10px 0 20px 0;
}

.lp-voice-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.lp-voice-carousel-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.lp-voice-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--lp-color-primary, #A0522D);
    border-radius: 4px;
}

.lp-voice-carousel {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.lp-voice-carousel .lp-voice-card {
    flex: 0 0 calc(100% - 40px);
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
}

/* Carousel Display Logic - Show all carousels */
.lp-voice-carousel-container .lp-voice-carousel-wrapper {
    display: block;
}

/* Image Carousel */
.lp-image-carousel-container {
    margin-top: 60px;
    margin-bottom: 40px;
}

.lp-image-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-color-primary, #A0522D) #f0f0f0;
    padding: 10px 0 20px 0;
}

.lp-image-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.lp-image-carousel-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.lp-image-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--lp-color-primary, #A0522D);
    border-radius: 4px;
}

.lp-image-carousel {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.lp-image-carousel-item {
    flex: 0 0 calc(100% - 40px);
    min-width: 300px;
    max-width: 500px;
    scroll-snap-align: start;
}

.lp-image-carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .lp-voice-carousel .lp-voice-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }

    .lp-image-carousel-item {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lp-voice-carousel .lp-voice-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }

    .lp-image-carousel-item {
        flex: 0 0 calc(100% - 10px);
        min-width: 260px;
    }
}

/* ==========================================================================
   匁E��皁E��スポンシブ対忁E   ========================================================================== */

/* タブレチE��対忁E(768px以丁E */
@media (max-width: 768px) {
    /* コンチE��とパディング */
    .lp-container {
        padding: 0 15px;
    }

    .lp-container-center {
        padding: 30px 15px;
    }

    /* セクション */
    .lp-section {
        padding: 40px 0;
    }

    .lp-hero {
        padding: 60px 0;
    }

    /* 見�EぁE*/
    .lp-content-wrapper h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-top: 40px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .lp-content-wrapper h3 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .lp-catchphrase {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    /* チE�Eブル - 横スクロール対忁E*/
    .lp-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 30px -15px;
        padding: 0 15px;
    }

    .lp-service-table {
        min-width: 700px;
        font-size: 0.9rem;
    }

    .lp-service-table th,
    .lp-service-table td {
        padding: 14px 10px;
        font-size: 0.85rem;
    }

    .lp-service-table th {
        font-size: 0.9rem;
        font-weight: 700;
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    }

    .lp-service-table th.plan-standard,
    .lp-service-table th.plan-gold,
    .lp-service-table th.plan-premium {
        font-size: 0.9rem;
        font-weight: 700;
    }

    .lp-roi-table {
        min-width: 500px;
        font-size: 0.9rem;
    }

    .lp-roi-table th,
    .lp-roi-table td {
        padding: 12px 10px;
    }

    /* カーチE*/
    .lp-card {
        padding: 25px 20px;
    }

    .lp-premium-card {
        padding: 30px 20px;
    }

    .lp-box-benefit {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .lp-box-white {
        padding: 30px 20px;
    }

    /* ボタン */
    .lp-btn-inner {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .lp-btn-cta {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    /* チE��スチE*/
    .lp-text-large {
        font-size: 1.1rem;
    }

    .lp-text-xlarge {
        font-size: 1.2rem;
    }

    .lp-text-xxlarge {
        font-size: 1.3rem;
    }

    .lp-text-center-large {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    /* プロフィール */
    .lp-profile-img-wrapper {
        height: 250px;
    }

    .lp-profile-name {
        font-size: 1.2rem;
    }

    /* スタチE��セクション */
    .staff-section {
        padding: 40px 0;
    }

    .staff-container {
        padding: 0 15px;
    }

    .staff-card {
        padding: 30px 20px;
    }

    .staff-name {
        font-size: 1.6rem;
    }

    .staff-catchphrase {
        font-size: 1.1rem;
        padding: 15px;
    }

    .staff-message {
        padding: 20px;
    }

    /* アコーチE��オン */
    .lp-accordion-summary {
        padding: 20px 15px;
        font-size: 1rem;
    }

    .lp-accordion-content {
        padding: 0 15px 25px 45px;
    }

    /* チェチE��リスチE*/
    .lp-check-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-check-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* フレチE��スボックス */
    .lp-flex-center {
        gap: 20px;
    }

    .lp-flex-col {
        min-width: 100%;
    }

    /* 画像フレーム */
    .lp-image-frame {
        min-height: 180px;
    }

    /* バッジ */
    .lp-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* メチE��ージボックス */
    .lp-customer-voice-box {
        padding: 25px 20px;
        margin: 30px auto;
    }

    .lp-jin-message {
        padding: 25px 20px;
        margin: 30px auto;
    }

    .lp-jin-message img {
        width: 60px;
        height: 60px;
    }

    /* 特徴ナンバ�E */
    .lp-feature-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    /* サポ�EトアイチE�� */
    .lp-support-item {
        padding: 20px;
    }

    /* 月カーチE*/
    .lp-month-card {
        padding: 25px 20px;
    }
}

/* モバイル対忁E(600px以丁E */
@media (max-width: 600px) {
    /* コンチE��とパディング */
    .lp-container {
        padding: 0 10px;
    }

    .lp-container-center {
        padding: 25px 10px;
    }

    /* セクション */
    .lp-section {
        padding: 30px 0;
    }

    .lp-hero {
        padding: 40px 0;
    }

    /* 見�EぁE*/
    .lp-content-wrapper h2 {
        font-size: clamp(1.3rem, 6vw, 1.6rem);
        margin-top: 30px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .lp-content-wrapper h2::after {
        width: 40px;
        height: 2px;
    }

    .lp-content-wrapper h3 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .lp-catchphrase {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
        line-height: 1.5;
    }

    /* チE�Eブル */
    .lp-table-wrapper {
        margin: 25px -10px;
        padding: 0 10px;
    }

    .lp-service-table {
        min-width: 600px;
        font-size: 0.8rem;
    }

    .lp-service-table th,
    .lp-service-table td {
        padding: 12px 8px;
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .lp-service-table th {
        font-size: 0.8rem;
        font-weight: 700;
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
        padding: 10px 6px;
    }

    .lp-service-table th.plan-standard,
    .lp-service-table th.plan-gold,
    .lp-service-table th.plan-premium {
        font-size: 0.8rem;
        font-weight: 700;
    }

    .lp-service-table th {
        padding: 10px 6px;
        font-size: 0.75rem;
        font-weight: 700;
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    }

    .lp-service-table th.plan-standard,
    .lp-service-table th.plan-gold,
    .lp-service-table th.plan-premium {
        font-size: 0.75rem;
        font-weight: 700;
    }

    .lp-roi-table {
        min-width: 400px;
        font-size: 0.85rem;
    }

    .lp-roi-table th,
    .lp-roi-table td {
        padding: 10px 8px;
    }

    /* カーチE*/
    .lp-card {
        padding: 20px 15px;
    }

    .lp-premium-card {
        padding: 25px 15px;
    }

    .lp-box-benefit {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .lp-box-white {
        padding: 25px 15px;
    }

    /* ボタン */
    .lp-btn-inner {
        padding: 16px 25px;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .lp-btn-cta {
        padding: 16px 30px;
        font-size: 1rem;
    }

    /* チE��スチE*/
    .lp-text-large {
        font-size: 1rem;
    }

    .lp-text-xlarge {
        font-size: 1.1rem;
    }

    .lp-text-xxlarge {
        font-size: 1.2rem;
    }

    .lp-text-center-large {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* プロフィール */
    .lp-profile-img-wrapper {
        height: 200px;
    }

    .lp-profile-name {
        font-size: 1.1rem;
    }

    .lp-profile-list {
        font-size: 0.9rem;
        line-height: 2;
    }

    /* スタチE��セクション */
    .staff-section {
        padding: 30px 0;
    }

    .staff-container {
        padding: 0 10px;
    }

    .staff-section-title {
        font-size: clamp(1.3rem, 6vw, 1.6rem);
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .staff-section-title::after {
        width: 40px;
        height: 2px;
    }

    .staff-card {
        padding: 25px 15px;
    }

    .staff-label {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .staff-name {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .staff-catchphrase {
        font-size: 1rem;
        padding: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .staff-profile {
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .staff-profile p {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .staff-message {
        padding: 20px 15px;
        line-height: 1.8;
    }

    .staff-message p {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    /* アコーチE��オン */
    .lp-accordion-summary {
        padding: 18px 12px;
        font-size: 0.95rem;
        gap: 12px;
    }

    .lp-faq-q {
        font-size: 1.1rem;
    }

    .lp-accordion-content {
        padding: 0 12px 20px 12px;
        font-size: 0.9rem;
    }

    /* チェチE��リスチE*/
    .lp-check-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* フレチE��スボックス */
    .lp-flex-center {
        gap: 15px;
        flex-direction: column;
    }

    /* 画像フレーム */
    .lp-image-frame {
        min-height: 150px;
    }

    /* バッジ */
    .lp-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* メチE��ージボックス */
    .lp-customer-voice-box {
        padding: 20px 15px;
        margin: 25px auto;
        font-size: 0.95rem;
    }

    .lp-jin-message {
        padding: 20px 15px;
        margin: 25px auto;
        font-size: 0.95rem;
    }

    .lp-jin-message img {
        width: 50px;
        height: 50px;
    }

    /* 特徴ナンバ�E */
    .lp-feature-number {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }

    /* サポ�EトアイチE�� */
    .lp-support-item {
        padding: 15px;
    }

    .lp-support-item h4 {
        font-size: 1.1rem;
    }

    /* 月カーチE*/
    .lp-month-card {
        padding: 20px 15px;
    }

    /* タブナビゲーション */
    .lp-voice-nav {
        gap: 8px;
        flex-wrap: wrap;
    }

    .lp-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    /* グリチE�� */
    .lp-grid-3,
    .lp-grid-2 {
        gap: 15px;
    }
}

/* 小型モバイル対忁E(480px以丁E */
@media (max-width: 480px) {
    /* 見�EぁE*/
    .lp-content-wrapper h2 {
        font-size: 1.25rem;
    }

    .lp-catchphrase {
        font-size: 1.3rem;
    }

    /* チE�Eブル */
    .lp-service-table {
        min-width: 550px;
        font-size: 0.75rem;
    }

    .lp-service-table th,
    .lp-service-table td {
        padding: 10px 6px;
        font-size: 0.7rem;
    }

    .lp-service-table th {
        font-size: 0.72rem;
        font-weight: 700;
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
        padding: 9px 5px;
    }

    .lp-service-table th.plan-standard,
    .lp-service-table th.plan-gold,
    .lp-service-table th.plan-premium {
        font-size: 0.72rem;
        font-weight: 700;
    }

    /* ボタン */
    .lp-btn-inner {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .lp-btn-cta {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    /* スタチE��セクション */
    .staff-name {
        font-size: 1.3rem;
    }

    .staff-catchphrase {
        font-size: 0.95rem;
    }

    /* アコーチE��オン */
    .lp-accordion-summary {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .lp-faq-q {
        font-size: 1rem;
    }

    /* タブナビゲーション */
    .lp-tab-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* 横画面モバイル対忁E*/
@media (max-width: 768px) and (orientation: landscape) {
    .lp-hero {
        padding: 40px 0;
    }

    .lp-section {
        padding: 30px 0;
    }
}

/* ==========================================================================
   Nutrition Intro Section
   ========================================================================== */
.lp-nutrition-intro-section {
    background-color: var(--lp-color-primary-light);
    padding: 60px 0;
}

.lp-nutrition-intro-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    text-align: center;
}

.lp-nutrition-intro-title {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    font-size: 1.6rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.lp-nutrition-intro-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--lp-color-text-body);
    margin-bottom: 30px;
}

.lp-nutrition-intro-features {
    text-align: left;
    margin: 30px 0;
    padding: 25px;
    background-color: #faf8f6;
    border-radius: 8px;
}

.lp-nutrition-intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.lp-nutrition-intro-feature-item:last-child {
    margin-bottom: 0;
}

.lp-check-icon {
    color: var(--lp-color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-nutrition-intro-cta {
    margin-top: 30px;
}

.lp-btn-nutrition-intro {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--lp-color-primary) 0%, var(--lp-color-primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(159, 140, 125, 0.3);
    font-size: 1rem;
}

.lp-btn-nutrition-intro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 140, 125, 0.4);
    opacity: 0.95;
}

.lp-nutrition-intro-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
}

/* Nutrition Intro Section Responsive */
@media (max-width: 768px) {
    .lp-nutrition-intro-section {
        padding: 40px 0;
    }

    .lp-nutrition-intro-box {
        padding: 30px 20px;
    }

    .lp-nutrition-intro-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .lp-nutrition-intro-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .lp-nutrition-intro-features {
        padding: 20px;
        margin: 25px 0;
    }

    .lp-nutrition-intro-feature-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .lp-btn-nutrition-intro {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .lp-nutrition-intro-section {
        padding: 30px 0;
    }

    .lp-nutrition-intro-box {
        padding: 25px 15px;
    }

    .lp-nutrition-intro-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .lp-nutrition-intro-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .lp-nutrition-intro-features {
        padding: 18px 15px;
        margin: 20px 0;
    }

    .lp-nutrition-intro-feature-item {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .lp-btn-nutrition-intro {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .lp-nutrition-intro-note {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   P.S. Message Section
   ========================================================================== */
.lp-ps-section {
    padding: 60px 0;
    background-color: #faf8f6;
    border-top: 3px solid var(--lp-color-primary);
}

.lp-ps-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 2;
    color: var(--lp-color-text-body);
}

.lp-ps-title {
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.lp-ps-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--lp-color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lp-ps-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 2;
}

.lp-ps-content p strong {
    color: var(--lp-color-text-heading);
    font-weight: bold;
}

.lp-ps-signature {
    text-align: right;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0d0c0;
}

.lp-ps-signature-text {
    font-weight: bold;
    font-family: var(--lp-font-serif);
    color: var(--lp-color-text-heading);
    margin-bottom: 0;
}

/* P.S. Section Responsive */
@media (max-width: 768px) {
    .lp-ps-section {
        padding: 40px 0;
    }

    .lp-ps-content {
        padding: 0 15px;
    }

    .lp-ps-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .lp-ps-title::after {
        width: 40px;
        height: 2px;
    }

    .lp-ps-content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.9;
    }

    .lp-ps-signature {
        margin-top: 30px;
        padding-top: 25px;
    }
}

@media (max-width: 600px) {
    .lp-ps-section {
        padding: 30px 0;
    }

    .lp-ps-content {
        padding: 0 10px;
    }

    .lp-ps-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .lp-ps-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.8;
    }

    .lp-ps-signature {
        margin-top: 25px;
        padding-top: 20px;
    }

    .lp-ps-signature-text {
        font-size: 0.95rem;
    }
}

/* ======================================== 
   Diagnostic Tool Section
======================================== */
.lp-diagnostic-section {
    padding: 60px 0;
    background-color: #fff9f5;
    border-top: 2px solid #f0e6e0;
}

.lp-diagnostic-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lp-diagnostic-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(109, 93, 82, 0.1);
    border: 1px solid #f0e6e0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lp-diagnostic-step-info {
    font-size: 0.9rem;
    color: #9F8C7D;
    margin-bottom: 20px;
    font-weight: bold;
}

.lp-diagnostic-question {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: #502220;
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: var(--lp-font-serif);
}

.lp-diagnostic-options {
    display: grid;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.lp-diagnostic-btn {
    padding: 15px 25px;
    border: 2px solid #9F8C7D;
    background: white;
    color: #502220;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.1rem;
    text-align: center;
}

.lp-diagnostic-btn:hover {
    background: #9F8C7D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 140, 125, 0.3);
}

.lp-diagnostic-btn.active {
    background: #502220;
    color: white;
    border-color: #502220;
}

/* Results Display */
.lp-diagnostic-result {
    display: none;
    animation: fadeIn 0.6s ease-out forwards;
}

.lp-diagnostic-result-title {
    font-size: 1.2rem;
    color: #9F8C7D;
    margin-bottom: 10px;
}

.lp-diagnostic-plan-name {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    color: #502220;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.3;
}

.lp-diagnostic-result-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
    background: #faf8f6;
    padding: 25px;
    border-radius: 12px;
}

.lp-diagnostic-restart {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #9F8C7D;
    text-decoration: underline;
    cursor: pointer;
}

/* Question transitions */
.lp-diagnostic-question-wrap {
    animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .lp-diagnostic-card {
        padding: 30px 20px;
        min-height: 350px;
    }
    .lp-diagnostic-question {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    .lp-diagnostic-btn {
        padding: 12px 15px;
        font-size: 1rem;
    }
}/* End custom CSS */


