@charset "utf-8";
/**
 * index.html 専用スタイル
 *
 * create: 2025-11-25
 * update: 2026-03-18
 *
 * @package     yonde
 * @author      ik
 * @copyright   Copyright (c) 2025 , NetReal
 * @version     yonde 1.00
 */

/* index専用変数（cmn.cssを補完） */
:root {
    --color-yellow: #E8D44D;
    --color-orange: #F89E3F;
    --color-hero-from: #e5f4ea;
    --color-hero-to: #bdd7c5;
}

/* ==========================================
   セクション共通
   ========================================== */
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #000;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #333;
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero-section {
    padding-top: 150px;
    padding-bottom: 65px;
    background: linear-gradient(to right, var(--color-hero-from) 0%, var(--color-hero-from) 60%, var(--color-hero-to) 100%);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.text-primary-green {
    color: var(--color-primary-green);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.hero-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-cta {
    background-color: var(--color-pink);
    color: #fff !important;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-cta:hover {
    background-color: #e8576a;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ==========================================
   特長セクション
   ========================================== */
.features-section {
    background-color: var(--color-bg-cream);
    padding: 5rem 0;
    scroll-margin-top: 85px;
}

.beta-notice {
    border: 2px solid var(--color-primary-green);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.feature-card {
    background: #fff;
    border: 2px solid var(--color-light-green);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* ==========================================
   区切り線
   ========================================== */
.section-divider {
    height: 4px;
    background: linear-gradient(to right, var(--color-lighter-green), var(--color-light-green), var(--color-lighter-green));
}

/* ==========================================
   機能セクション
   ========================================== */
.functionality-section {
    background-color: var(--color-lighter-green);
    padding: 5rem 0;
    scroll-margin-top: 85px;
}

.function-card {
    background: #fff;
    border: 2px solid var(--color-light-green);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.function-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.function-icon {
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.function-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.function-text {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* ==========================================
   料金セクション
   ========================================== */
.pricing-section {
    background-color: #fff;
    padding: 5rem 0;
    scroll-margin-top: 85px;
}

.pricing-card {
    border: 3px solid var(--color-light-green);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    max-width: 500px;
    width: 100%;
}

.pricing-badge {
    background-color: var(--color-dark-green);
    color: #fff;
    padding: 0.375rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.3125rem;
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-subtitle-text {
    font-size: 1.1rem;
    color: var(--color-primary-green);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}

.pricing-period {
    color: var(--color-pink);
    font-size: 1rem;
}

.pricing-features {
    border-top: 1px dashed var(--color-primary-green);
    border-bottom: 1px dashed var(--color-primary-green);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    flex-shrink: 0;
}

.pricing-example {
    background-color: #f0f0f0;
    border: 1px solid #bcbfc3;
    border-radius: 0.375rem;
    padding: 1rem;
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.pricing-campaign {
    text-align: center;
    margin-bottom: 1.5rem;
}

.campaign-icon {
    display: block;
    margin: 0 auto 0.5rem;
}

.campaign-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.campaign-offer {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
}

.campaign-text {
    font-size: 0.875rem;
    color: #555;
}

.btn-pricing {
    display: block;
    width: 100%;
    background-color: var(--color-pink);
    color: #fff !important;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-pricing:hover {
    background-color: #e8576a;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ==========================================
   導入事例セクション
   ========================================== */
.testimonials-section {
    background-color: var(--color-lighter-green);
    padding: 5rem 0;
    scroll-margin-top: 85px;
}

.testimonial-card {
    background: #fff;
    border: 2px solid var(--color-light-green);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-dark-green);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: #555;
}

/* ==========================================
   FAQセクション
   ========================================== */
.faq-section {
    background-color: var(--color-bg-cream);
    padding: 5rem 0;
    scroll-margin-top: 85px;
}

.faq-accordion {
    max-width: 720px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--color-light-green);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-accordion .accordion-button {
    background-color: var(--color-light-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    border-radius: 0 !important;
    transition: background-color 0.2s;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #46a07a;
    color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:hover {
    background-color: #46a07a;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-accordion .accordion-button::after {
    content: '+';
    background-image: none;
    width: auto;
    height: auto;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    color: white;
    transform: none !important;
    flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    background-image: none;
    transform: none !important;
}

.faq-accordion .accordion-collapse {
    border-top: 1px solid rgba(87, 179, 138, 0.2);
}

.faq-accordion .accordion-body {
    padding: 1rem 1.5rem;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
}

.btn-outline-cta {
    border: 2px solid var(--color-pink);
    color: var(--color-pink);
    background-color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline-cta:hover {
    background-color: var(--color-pink);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   水平線
   ========================================== */
.section-hr {
    border: none;
    border-top: 2px solid var(--color-lighter-green);
    margin: 0;
}

/* ==========================================
   CTAセクション
   ========================================== */
.cta-section {
    background-color: var(--color-bg-cream);
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* ==========================================
   レスポンシブ
   ========================================== */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-cta,
    .btn-outline-cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .pricing-features .row {
        flex-direction: column;
    }
}
