/* ========================================
   リセット・基本設定
   ======================================== */
.rp-section,
.rp-section * {
    box-sizing: border-box;
}

.rp-section {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #333;
    margin: 0 0 0 0 !important;
    padding: 60px 0 !important;
    width: 100%;
    max-width: none !important;
}

.rp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   セクション共通
   ======================================== */
.rp-section-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

.rp-title-highlight {
    background: linear-gradient(transparent 60%, #FFD700 60%);
    padding: 0 4px;
}

.rp-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* ========================================
   ボタン共通
   ======================================== */
.rp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.rp-btn-line {
    background: #06C755;
    color: white;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.rp-btn-line:hover {
    background: #05B04D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
    text-decoration: none;
    color: white;
}

.rp-btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.rp-btn-xlarge {
    padding: 24px 48px;
    font-size: 20px;
    font-weight: 900;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.rp-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 !important;
    text-align: center;
}

.rp-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.rp-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.rp-hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.rp-hero-price {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 40px;
    display: inline-block;
}

.rp-price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.rp-price-amount {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.rp-price-currency {
    font-size: 24px;
    font-weight: 700;
}

.rp-price-detail {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

.rp-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.rp-hero-cta .rp-btn {
    min-width: 400px;
}

.rp-hero-cta-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.rp-hero-features {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.rp-feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========================================
   4つのメリット
   ======================================== */
.rp-benefits {
    background: #f8f9fa;
}

.rp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rp-benefit-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rp-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rp-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.rp-benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.rp-benefit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   料金表
   ======================================== */
.rp-pricing {
    background: white;
}

.rp-pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.rp-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rp-pricing-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.rp-pricing-table th {
    padding: 16px;
    font-weight: 700;
    text-align: left;
}

.rp-pricing-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.rp-pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.rp-highlight-row {
    /* 背景色なし */
}

.rp-pricing-cards {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.rp-price-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.rp-price-card:hover {
    transform: translateY(-5px);
}

.rp-price-card-popular {
    border: 3px solid #FFD700;
}

.rp-price-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.rp-price-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px;
    text-align: center;
}

.rp-price-card-volume {
    font-size: 18px;
    font-weight: 700;
}

.rp-price-card-body {
    padding: 20px;
    text-align: center;
}

.rp-price-card-amount {
    font-size: 28px;
    font-weight: 900;
    color: #FF5252;
    line-height: 1;
}

.rp-price-card-amount span {
    font-size: 16px;
    font-weight: 700;
}

.rp-price-card-detail {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

.rp-pricing-note {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.rp-pricing-note p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.rp-options {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.rp-options-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.rp-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-options-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.rp-options-list li:last-child {
    border-bottom: none;
}

.rp-cta-center {
    text-align: center;
}

/* ========================================
   配布エリア
   ======================================== */
.rp-area {
    background: #f8f9fa;
}

.rp-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.rp-area-map {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rp-map-placeholder {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.rp-map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #667eea;
}

.rp-map-placeholder p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rp-map-placeholder small {
    font-size: 12px;
}

.rp-area-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rp-area-block {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.rp-area-type {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
}

.rp-area-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.rp-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rp-area-tag {
    background: #e0e7ff;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

.rp-area-note {
    background: #fff3cd;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
    display: flex;
    align-items: start;
    gap: 10px;
}

.rp-area-note i {
    margin-top: 2px;
}

/* ========================================
   サービスの流れ
   ======================================== */
.rp-flow {
    background: white;
}

.rp-flow-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rp-flow-tab {
    padding: 12px 24px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rp-flow-tab:hover {
    background: #f0f4ff;
}

.rp-flow-tab-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.rp-flow-content {
    display: none;
}

.rp-flow-content-active {
    display: block;
}

.rp-flow-steps {
    max-width: 700px;
    margin: 0 auto;
}

.rp-flow-step {
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.rp-flow-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.rp-flow-step-content {
    flex: 1;
}

.rp-flow-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rp-flow-step-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.rp-flow-arrow {
    text-align: center;
    font-size: 24px;
    color: #667eea;
    margin: 10px 0;
}

.rp-flow-sla {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
}

.rp-flow-sla-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.rp-flow-sla-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-flow-sla-list li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #dee2e6;
}

.rp-flow-sla-list li:last-child {
    border-bottom: none;
}

/* ========================================
   FAQ
   ======================================== */
.rp-faq {
    background: #f8f9fa;
}

.rp-faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.rp-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.rp-faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.rp-faq-question:hover {
    background: #f8f9fa;
}

.rp-faq-q {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.rp-faq-question-text {
    flex: 1;
	color: black;
}

.rp-faq-icon {
    transition: transform 0.3s ease;
    color: #667eea;
}

.rp-faq-item.active .rp-faq-icon {
    transform: rotate(180deg);
}

.rp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.rp-faq-item.active .rp-faq-answer {
    max-height: 300px;
    padding: 20px 20px 20px 20px;
}

.rp-faq-a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #FF5252;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    float: left;
}

.rp-faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-left: 44px;
	margin-bottom: 0;
}

.rp-faq-contact {
    text-align: center;
    padding-top: 20px;
}

.rp-faq-contact p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* ========================================
   最終CTA
   ======================================== */
.rp-final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 0 !important;
}

.rp-final-cta-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
	color: #ffffff;
}

.rp-final-cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.rp-final-cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.rp-final-cta-note {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    text-align: center;
}

/* ========================================
   フッター
   ======================================== */
.rp-footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px !important;
}

.rp-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.rp-footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rp-footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.rp-footer-note h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rp-footer-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-footer-note li {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.rp-footer-note li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.rp-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

/* 固定CTAバーは削除しました */

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
    .rp-section {
        padding: 40px 0 !important;
    }
    
    .rp-section-title {
        font-size: 28px;
    }
    
    .rp-hero {
        padding: 60px 0 !important;
    }
    
    .rp-hero-title {
        font-size: 32px;
    }
    
    .rp-hero-subtitle {
        font-size: 16px;
    }
    
    .rp-price-amount {
        font-size: 40px;
    }
    
    .rp-hero-cta .rp-btn {
        min-width: auto;
        width: 100%;
    }
    
    .rp-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rp-pricing-table-wrapper {
        display: none;
    }
    
    .rp-pricing-cards {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .rp-area-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rp-flow-tab {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .rp-final-cta {
        padding: 60px 0 !important;
    }
    
    .rp-final-cta-title {
        font-size: 28px;
    }
    
    .rp-final-cta-buttons .rp-btn {
        width: 100%;
    }
    
    .rp-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* 固定CTAバーは削除しました */
}

@media (max-width: 480px) {
    .rp-container {
        padding: 0 16px;
    }
    
    .rp-section {
        padding: 30px 0 !important;
    }
    
    .rp-section-title {
        font-size: 24px;
    }
    
    .rp-hero-title {
        font-size: 28px;
    }
    
    .rp-price-amount {
        font-size: 36px;
    }
    
    .rp-final-cta-title {
        font-size: 24px;
    }
	.rp-info h2 {
        font-size: 24px !important;
	}
}



.rp-info {
    max-width: 800px !important;
    margin: 0 auto 40px !important;
	width: 90%;
}
.rp-info h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    line-height: 1.4;
	text-align: center;
}









/* ========================================
   こんな方におすすめセクション
   ======================================== */

/* スクロールアニメーション用 */
.rp-target-audience .rp-fade-in-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ホバーエフェクト */
.rp-target-card {
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease !important;
}

.rp-target-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .rp-target-audience .rp-section-title {
        font-size: 28px !important;
    }
    
    .rp-target-audience h3 {
        font-size: 26px !important;
    }
    
    .rp-target-card {
        padding: 30px !important;
    }
    
    .rp-target-card h4 {
        font-size: 18px !important;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .rp-target-audience .rp-section-title {
        font-size: 24px !important;
    }
    
    .rp-target-audience h3 {
        font-size: 22px !important;
    }
    
    .rp-target-card {
        padding: 24px !important;
    }
    
    .rp-target-card h4 {
        font-size: 16px !important;
    }
    
    .rp-target-card h4 i {
        font-size: 20px !important;
    }
}

