/**
 * Pattern Landing Product: 業務用WEBシステム無料版ランディングページ CSS
 * 
 * デザインコンセプト:
 * - 業務用システムとしての信頼感と安定感
 * - B2Cのような華美さを避け、わかりやすさと実用性を重視
 * - TOPページのデザインシステムを継承しつつ、集客寄りに最適化
 * - ブルー系を基調とした落ち着いたカラースキーム
 */

/* =========================================
   カラーパレット定義
   ========================================= */
:root {
    --landing-primary: #2563eb;
    --landing-primary-dark: #1e40af;
    --landing-primary-light: #3b82f6;
    --landing-secondary: #0891b2;
    --landing-accent: #059669;
    
    --landing-text: #1f2937;
    --landing-text-light: #6b7280;
    --landing-bg: #ffffff;
    --landing-bg-light: #f9fafb;
    --landing-bg-accent: #eff6ff;
    
    --landing-border: #e5e7eb;
    --landing-border-light: #f3f4f6;
    
    --landing-success: #059669;
    --landing-warning: #d97706;
    --landing-error: #dc2626;
}

/* =========================================
   共通ヘッダー・メニューのコンテナ幅設定
   ========================================= */
.mpdp-pattern-landing-product .mpdp-site-header .ast-container,
.mpdp-pattern-landing-product .mpdp-top-menu .ast-container {
    max-width: 1400px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* =========================================
   基本設定
   ========================================= */
.mpdp-pattern-landing-product {
    background: var(--landing-bg);
    color: var(--landing-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.7;
}

/* 全セクションのコンテナを確実に中央配置 */
.mpdp-landing-hero__container,
.mpdp-landing-concept__container,
.mpdp-landing-why-free__container,
.mpdp-landing-merit__container,
.mpdp-landing-steps__container,
.mpdp-landing-functions__container,
.mpdp-landing-pricing__container,
.mpdp-landing-faq__container,
.mpdp-landing-register__container,
.mpdp-landing-footer-links__container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Astraテーマのヘッダー・フッターを非表示 */
body.mpdp-active-pattern-landing-product #masthead,
body.mpdp-active-pattern-landing-product .site-header,
body.mpdp-active-pattern-landing-product #colophon,
body.mpdp-active-pattern-landing-product .site-footer {
    display: none !important;
}

/* =========================================
   固定ナビゲーション
   ========================================= */
.mpdp-landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--landing-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mpdp-landing-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.mpdp-landing-nav__logo img,
.mpdp-landing-nav__logo .custom-logo {
    max-height: 45px;
    width: auto;
}

.mpdp-landing-nav__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--landing-primary);
    text-decoration: none;
}

.mpdp-landing-nav__menu {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.mpdp-landing-nav__item {
    padding: 8px 16px;
    color: var(--landing-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mpdp-landing-nav__item:hover {
    background: var(--landing-bg-accent);
    color: var(--landing-primary);
}

.mpdp-landing-nav__cta {
    padding: 10px 24px;
    background: var(--landing-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.mpdp-landing-nav__cta:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

@media (max-width: 1024px) {
    .mpdp-landing-nav__menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .mpdp-landing-nav__container {
        height: 60px;
        padding: 0 16px;
    }
    
    .mpdp-landing-nav__cta {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* =========================================
   ヒーローセクション
   ========================================= */
.mpdp-landing-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 0 100px;
}

.mpdp-landing-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mpdp-landing-hero__content {
    max-width: 600px;
}

.mpdp-landing-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--landing-text);
    margin: 0 0 24px;
}

.mpdp-landing-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--landing-text-light);
    margin: 0 0 40px;
}

.mpdp-landing-hero__cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.mpdp-landing-hero__cta-primary {
    padding: 16px 40px;
    background: var(--landing-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mpdp-landing-hero__cta-primary:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.mpdp-landing-hero__cta-secondary {
    padding: 16px 40px;
    background: white;
    color: var(--landing-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid var(--landing-primary);
    transition: all 0.3s ease;
    display: inline-block;
}

.mpdp-landing-hero__cta-secondary:hover {
    background: var(--landing-bg-accent);
}

.mpdp-landing-hero__note {
    font-size: 0.9rem;
    color: var(--landing-text-light);
    margin: 0;
}

.mpdp-landing-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mpdp-landing-hero__image-placeholder svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
    .mpdp-landing-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mpdp-landing-hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mpdp-landing-hero {
        padding: 60px 0 80px;
    }
    
    .mpdp-landing-hero__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-hero__title {
        font-size: 2rem;
    }
    
    .mpdp-landing-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .mpdp-landing-hero__cta-group {
        flex-direction: column;
    }
    
    .mpdp-landing-hero__cta-primary,
    .mpdp-landing-hero__cta-secondary {
        text-align: center;
    }
}

/* =========================================
   共通セクションスタイル
   ========================================= */
.mpdp-landing-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 16px;
    color: var(--landing-text);
    line-height: 1.3;
}

.mpdp-landing-section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--landing-text-light);
    margin: 0 auto 60px;
    max-width: 800px;
}

@media (max-width: 768px) {
    .mpdp-landing-section-title {
        font-size: 1.8rem;
    }
    
    .mpdp-landing-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

/* =========================================
   コンセプトセクション
   ========================================= */
.mpdp-landing-concept {
    padding: 100px 0;
    background: var(--landing-bg);
}

.mpdp-landing-concept__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-concept__content {
    margin-top: 40px;
}

.mpdp-landing-concept__text {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--landing-primary);
}

.mpdp-landing-concept__text p {
    margin: 0 0 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.mpdp-landing-concept__text p:last-child {
    margin-bottom: 0;
}

.mpdp-landing-concept__lead {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--landing-primary);
    margin-bottom: 30px !important;
}

.mpdp-landing-concept__conclusion {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: var(--landing-primary);
    text-align: center;
    padding: 24px;
    background: var(--landing-bg-accent);
    border-radius: 8px;
    margin-top: 30px !important;
}

@media (max-width: 768px) {
    .mpdp-landing-concept {
        padding: 60px 0;
    }
    
    .mpdp-landing-concept__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-concept__text {
        padding: 32px 24px;
    }
    
    .mpdp-landing-concept__text p {
        font-size: 1rem;
    }
}

/* =========================================
   無料の理由セクション
   ========================================= */
.mpdp-landing-why-free {
    padding: 100px 0;
    background: var(--landing-bg-light);
}

.mpdp-landing-why-free__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-why-free__content {
    margin-top: 40px;
}

.mpdp-landing-why-free__text p {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.mpdp-landing-why-free__highlight {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--landing-primary);
    padding: 20px;
    background: white;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0 !important;
}

.mpdp-landing-why-free__box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    border: 2px solid var(--landing-primary-light);
}

.mpdp-landing-why-free__box p {
    margin: 0 0 16px;
}

.mpdp-landing-why-free__box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mpdp-landing-why-free {
        padding: 60px 0;
    }
    
    .mpdp-landing-why-free__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-why-free__box {
        padding: 24px;
    }
}

/* =========================================
   メリットセクション
   ========================================= */
.mpdp-landing-merit {
    padding: 100px 0;
    background: var(--landing-bg);
}

.mpdp-landing-merit__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-merit__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 60px;
}

.mpdp-landing-merit__item {
    display: flex;
    gap: 32px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--landing-primary);
}

.mpdp-landing-merit__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--landing-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mpdp-landing-merit__content {
    flex: 1;
}

.mpdp-landing-merit__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 8px;
    line-height: 1.4;
}

.mpdp-landing-merit__subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--landing-primary);
}

.mpdp-landing-merit__content p {
    margin: 16px 0 0;
    line-height: 1.8;
}

.mpdp-landing-merit__point {
    font-weight: 600;
    color: var(--landing-primary);
    padding-left: 16px;
    border-left: 3px solid var(--landing-primary);
    margin-top: 20px !important;
}

.mpdp-landing-merit__feature {
    margin-top: 24px;
    padding: 20px;
    background: var(--landing-bg-accent);
    border-radius: 8px;
}

.mpdp-landing-merit__feature p {
    margin: 0;
}

.mpdp-landing-merit__note {
    font-size: 0.9rem;
    color: var(--landing-text-light);
    margin-top: 12px !important;
}

@media (max-width: 768px) {
    .mpdp-landing-merit {
        padding: 60px 0;
    }
    
    .mpdp-landing-merit__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-merit__item {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    
    .mpdp-landing-merit__number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mpdp-landing-merit__title {
        font-size: 1.2rem;
    }
}

/* =========================================
   導入ステップセクション
   ========================================= */
.mpdp-landing-steps {
    padding: 100px 0;
    background: var(--landing-bg-light);
}

.mpdp-landing-steps__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mpdp-landing-steps__item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.mpdp-landing-steps__item::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--landing-primary);
    font-weight: 700;
}

.mpdp-landing-steps__item:last-child::after {
    display: none;
}

.mpdp-landing-steps__number {
    display: inline-block;
    padding: 8px 20px;
    background: var(--landing-primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.mpdp-landing-steps__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 16px;
}

.mpdp-landing-steps__content p {
    margin: 0;
    line-height: 1.7;
    color: var(--landing-text-light);
}

.mpdp-landing-steps__summary {
    margin-top: 60px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--landing-accent);
}

.mpdp-landing-steps__summary p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--landing-text);
}

@media (max-width: 1024px) {
    .mpdp-landing-steps__list {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mpdp-landing-steps__item::after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -26px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .mpdp-landing-steps {
        padding: 60px 0;
    }
    
    .mpdp-landing-steps__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-steps__item {
        padding: 24px;
    }
}

/* =========================================
   主な機能セクション
   ========================================= */
.mpdp-landing-functions {
    padding: 100px 0;
    background: var(--landing-bg);
}

.mpdp-landing-functions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-functions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.mpdp-landing-functions__item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--landing-primary);
    transition: all 0.3s ease;
}

.mpdp-landing-functions__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mpdp-landing-functions__icon {
    width: 60px;
    height: 60px;
    background: var(--landing-bg-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--landing-primary);
}

.mpdp-landing-functions__icon svg {
    width: 32px;
    height: 32px;
}

.mpdp-landing-functions__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 12px;
}

.mpdp-landing-functions__desc {
    margin: 0;
    line-height: 1.7;
    color: var(--landing-text-light);
}

.mpdp-landing-functions__video {
    margin-top: 80px;
    text-align: center;
}

.mpdp-landing-functions__video-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 16px;
}

.mpdp-landing-functions__video p {
    margin: 0 0 32px;
    color: var(--landing-text-light);
}

.mpdp-landing-functions__video-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

.mpdp-landing-functions__video-box {
    background: var(--landing-bg-light);
    border: 2px dashed var(--landing-border);
    border-radius: 12px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mpdp-landing-functions__video-box svg {
    width: 80px;
    height: 80px;
    color: var(--landing-primary);
    opacity: 0.5;
}

.mpdp-landing-functions__video-box p {
    margin: 0;
    color: var(--landing-text-light);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .mpdp-landing-functions {
        padding: 60px 0;
    }
    
    .mpdp-landing-functions__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-functions__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   料金プランセクション
   ========================================= */
.mpdp-landing-pricing {
    padding: 100px 0;
    background: var(--landing-bg-light);
}

.mpdp-landing-pricing__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-pricing__table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mpdp-landing-pricing__table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-collapse: separate;
    border-spacing: 0;
}

.mpdp-landing-pricing__table thead {
    background: var(--landing-primary);
    color: white;
}

.mpdp-landing-pricing__th-feature {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
}

.mpdp-landing-pricing__th-plan {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
}

.mpdp-landing-pricing__th-plan:last-child {
    border-right: none;
}

.mpdp-landing-pricing__th-plan--free {
    background: var(--landing-accent);
}

.mpdp-landing-pricing__td-feature {
    padding: 16px 20px;
    font-weight: 600;
    border-right: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
    background: var(--landing-bg-light);
}

.mpdp-landing-pricing__td-plan {
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.mpdp-landing-pricing__td-plan:last-child {
    border-right: none;
}

.mpdp-landing-pricing__td-plan--free {
    background: rgba(5, 150, 105, 0.05);
    font-weight: 700;
    color: var(--landing-accent);
}

.mpdp-landing-pricing__tr-category td {
    background: var(--landing-bg-accent);
    font-weight: 700;
    color: var(--landing-primary);
    padding: 12px 20px;
}

.mpdp-landing-pricing__notes {
    margin-top: 40px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mpdp-landing-pricing__notes-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0 0 20px;
}

.mpdp-landing-pricing__notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mpdp-landing-pricing__notes-list li {
    padding: 8px 0;
    line-height: 1.7;
    color: var(--landing-text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .mpdp-landing-pricing {
        padding: 60px 0;
    }
    
    .mpdp-landing-pricing__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-pricing__table {
        font-size: 0.9rem;
    }
    
    .mpdp-landing-pricing__th-feature,
    .mpdp-landing-pricing__td-feature {
        min-width: 150px;
    }
    
    .mpdp-landing-pricing__th-plan,
    .mpdp-landing-pricing__td-plan {
        min-width: 100px;
        padding: 12px 8px;
    }
}

/* =========================================
   FAQセクション
   ========================================= */
.mpdp-landing-faq {
    padding: 100px 0;
    background: var(--landing-bg);
}

.mpdp-landing-faq__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.mpdp-landing-faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.mpdp-landing-faq__item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mpdp-landing-faq__question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0;
    padding: 24px 28px;
    background: var(--landing-bg-light);
    border-left: 4px solid var(--landing-primary);
}

.mpdp-landing-faq__answer {
    padding: 24px 28px;
}

.mpdp-landing-faq__answer p {
    margin: 0 0 16px;
    line-height: 1.8;
}

.mpdp-landing-faq__answer p:last-child {
    margin-bottom: 0;
}

.mpdp-landing-faq__more {
    margin-top: 48px;
    text-align: center;
}

.mpdp-landing-faq__more-link {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--landing-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid var(--landing-primary);
    transition: all 0.3s ease;
}

.mpdp-landing-faq__more-link:hover {
    background: var(--landing-bg-accent);
}

@media (max-width: 768px) {
    .mpdp-landing-faq {
        padding: 60px 0;
    }
    
    .mpdp-landing-faq__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-faq__question {
        font-size: 1.1rem;
        padding: 20px 24px;
    }
    
    .mpdp-landing-faq__answer {
        padding: 20px 24px;
    }
}

/* =========================================
   登録CTAセクション
   ========================================= */
.mpdp-landing-register {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.mpdp-landing-register__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.mpdp-landing-register__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 48px;
}

.mpdp-landing-register__form {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mpdp-landing-register__form-inner {
    max-width: 500px;
    margin: 0 auto;
}

.mpdp-landing-register__form-group {
    margin-bottom: 24px;
    text-align: left;
}

.mpdp-landing-register__label {
    display: block;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.mpdp-landing-register__input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--landing-border);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.mpdp-landing-register__input:focus {
    outline: none;
    border-color: var(--landing-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.mpdp-landing-register__submit {
    width: 100%;
    padding: 18px;
    background: var(--landing-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mpdp-landing-register__submit:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.mpdp-landing-register__note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--landing-text-light);
    line-height: 1.7;
}

.mpdp-landing-register__note a {
    color: var(--landing-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mpdp-landing-register {
        padding: 60px 0;
    }
    
    .mpdp-landing-register__container {
        padding: 0 16px;
    }
    
    .mpdp-landing-register__title {
        font-size: 1.6rem;
    }
    
    .mpdp-landing-register__form {
        padding: 32px 24px;
    }
}

/* =========================================
   フッターセクション
   ========================================= */
.mpdp-landing-footer {
    padding: 60px 0 40px;
    background: var(--landing-text);
    color: white;
}

.mpdp-landing-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.mpdp-landing-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.mpdp-landing-footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.mpdp-landing-footer__links a:hover {
    color: white;
}

.mpdp-landing-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mpdp-landing-footer {
        padding: 40px 0 30px;
    }
    
    .mpdp-landing-footer__links {
        flex-direction: column;
        gap: 16px;
    }
}
