/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #10b981;
    --accent-color: #fbbf24;
    --dark-color: #1f2937;
    --light-color: #faf5ff;
    --text-color: #4b5563;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    --bg-gray: #f9fafb;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: #FFFFFF;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダーはheader.cssに移動 */

/* ファーストビュー */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100%25" height="100%25" fill="url(%23grid)" /%3E%3C/svg%3E');
    opacity: 0.2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(20px) translateX(-20px); }
    75% { transform: translateY(-15px) translateX(30px); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.4;
    color: var(--dark-color);
}

.hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(transparent 60%, rgba(139, 92, 246, 0.2) 60%);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.price-emphasis {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    padding: 12px 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    border-radius: 20px;
    height: 400px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    width: auto;
}

.btn-line {
    background: linear-gradient(135deg, #06C755, #05A547);
    color: white;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.25);
}

.btn-line:hover {
    background: linear-gradient(135deg, #05A547, #06C755);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.35);
}

/* セクション共通 */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(30px, 4vw, 40px);
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 900;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 17px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 理念セクション */
.reason {
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
    position: relative;
}

.reason-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reason-content p {
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
}

.reason-highlight {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 48px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.reason-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.reason-highlight strong {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 900;
}

/* お悩みセクション */
.problems {
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
    border-color: var(--primary-light);
}

.check {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.problem-item p {
    line-height: 1.7;
    color: var(--text-color);
    font-size: 15px;
}

.problems-solution {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 48px;
    font-weight: 700;
}

/* 特徴セクション */
.features {
    background: var(--bg-gray);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

/* 制作フロー */
.flow {
    background: white;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, white 0%, var(--light-color) 100%);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #0ea572);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
}

.flow-step h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.flow-step p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-light);
    font-weight: 900;
}

.flow-note {
    text-align: center;
    font-size: 19px;
    color: var(--primary-color);
    font-weight: 700;
}

/* 料金プラン */
.pricing {
    background: linear-gradient(180deg, var(--bg-gray) 0%, white 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, white 0%, rgba(139, 92, 246, 0.02) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.recommended-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    padding: 6px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.plan-name {
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--dark-color);
    text-align: center;
    font-weight: 700;
}

.plan-price {
    text-align: center;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.price-unit {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.price-yearly {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 14px;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 28px;
    color: var(--text-color);
    font-size: 15px;
    transition: all 0.3s;
}

.plan-features li:hover {
    padding-left: 32px;
    color: var(--primary-color);
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 18px;
}

.plan-features li.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-options {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.pricing-options h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 700;
}

.pricing-options ul {
    list-style: none;
}

.pricing-options li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 15px;
}

.pricing-message {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

/* 安心セクション */
.security {
    background: white;
}

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

.security-lead {
    text-align: center;
    font-size: 24px;
    margin-bottom: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.security-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.security-item .check {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 900;
}

.security-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 36px;
}

.security-message {
    text-align: center;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ストーリーセクション */
.story {
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
    position: relative;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 32px;
    color: var(--text-color);
}

.story-highlight {
    background: white;
    padding: 48px 40px;
    border-radius: 24px;
    margin: 48px 0;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
    border: 2px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.story-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

.story-highlight strong {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.story-message {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::before {
    top: -200px;
    left: -200px;
}

.cta-section::after {
    bottom: -200px;
    right: -200px;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.cta-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 56px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-item {
    width: 100%;
}

.cta-icon {
    font-size: 32px;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text strong {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.cta-text small {
    font-size: 14px;
    opacity: 0.9;
    font-weight: normal;
}

/* フッター */
.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-info {
    margin-bottom: 32px;
}

.footer-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.footer-message {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 12px 0;
    }

    .logo-sub {
        display: none;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
    }

    .tel-hours {
        display: none;
    }

    .tel-number {
        font-size: 16px;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .emphasis {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .problems-grid,
    .features-grid,
    .security-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 12px;
    }

    .tel-link svg {
        width: 18px;
        height: 18px;
    }

    .tel-number {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}/* 解約後も安心セクション */
.security {
    background: linear-gradient(180deg, white 0%, #faf5ff 100%);
    padding: 100px 0;
    position: relative;
}

.security .section-title {
    font-size: clamp(36px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.security .section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.security-content {
    max-width: 900px;
    margin: 0 auto;
}

.security-lead {
    text-align: center;
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.6;
}

.security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

.security-item .check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 500;
}

.security-note {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 30px;
    font-style: italic;
}

.security-message {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
    padding: 40px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.security-message {
    font-size: 20px;
    color: #8b5cf6;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* 装飾要素 */
.security::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.security::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .security {
        padding: 60px 0;
    }

    .security .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .security .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .security-lead {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .security-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .security-item {
        padding: 20px;
    }

    .security-message {
        padding: 30px 20px;
        font-size: 18px;
    }
}/* ヘッダー仕様書に基づくスタイル */

/* ヘッダー基本設定 */
.header {
    background: #ffffff;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ロゴ部分 */
.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ナビゲーションエリア */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 電話番号部分 */
.tel-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.tel-link:hover {
    opacity: 0.8;
}

.tel-link svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.tel-info {
    display: flex;
    flex-direction: column;
}

.tel-number {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.tel-hours {
    font-size: 10px;
    color: #666;
    font-weight: 400;
}

/* CTAボタン */
.cta-button.cta-header {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button.cta-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* レスポンシブ対応 */

/* タブレット（768px以下） */
@media (max-width: 768px) {
    .header {
        height: auto;
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo-sub {
        display: none;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }
}

/* スマホ（480px以下） */
@media (max-width: 480px) {
    .nav {
        gap: 12px;
    }

    .tel-number {
        font-size: 16px;
    }

    .tel-hours {
        font-size: 9px;
    }

    .cta-button.cta-header {
        padding: 10px 20px;
        font-size: 14px;
    }
}/* ヒーローセクション */
.hero {
    padding: 80px 0 100px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-align: left;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #4b5563;
}

.hero-point {
    font-size: 18px;
    color: #8b5cf6;
    font-weight: 700;
    margin-bottom: 32px;
    display: inline-block;
}

.hero-actions {
    margin-top: 32px;
}

.cta-primary {
    background: #8b5cf6;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
    background: #7c3aed;
}

.cta-primary .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-primary:hover .arrow {
    transform: translateX(3px);
}

.price-emphasis {
    color: #fbbf24;
    font-size: 24px;
    font-weight: 900;
}

.highlight {
    color: #dc2626;
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 40%;
    background: rgba(220, 38, 38, 0.15);
    z-index: -1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
        min-height: 500px;
    }

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .price-emphasis {
        font-size: 20px;
    }

    .cta-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
}/* 理念セクション */
.reason {
    background: linear-gradient(180deg, #faf5ff 0%, white 100%);
    position: relative;
    padding: 100px 0;
}

.reason .section-title {
    font-size: clamp(36px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.reason .section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reason-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reason-content p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 2;
    color: #4b5563;
    font-weight: 400;
}

.reason-content p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: #1f2937;
}

.reason-highlight {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    margin: 60px auto 0;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.12);
    border: 2px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.reason-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.reason-highlight p {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.reason-highlight p:last-child {
    margin-bottom: 0;
    text-align: center;
}

.reason-highlight strong {
    color: #8b5cf6;
    font-size: 22px;
    font-weight: 900;
    display: inline;
}

/* 装飾要素 */
.reason::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.reason::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .reason {
        padding: 60px 0;
    }

    .reason .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .reason .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .reason-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .reason-content p:first-child {
        font-size: 18px;
    }

    .reason-highlight {
        padding: 35px 25px;
        margin-top: 40px;
    }

    .reason-highlight strong {
        font-size: 20px;
    }
}/* お悩みセクション */
.problems {
    background: #f9fafb;
    padding: 100px 0;
    position: relative;
}

.problems .section-title {
    font-size: clamp(36px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.problems .section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.problem-item .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.problem-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    flex: 1;
}

.problems-solution {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
    border-radius: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-solution strong {
    font-size: 24px;
    color: #8b5cf6;
    font-weight: 900;
    line-height: 1.5;
    display: block;
}

/* 装飾要素 */
.problems::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .problems {
        padding: 60px 0;
    }

    .problems .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .problems .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .problem-item {
        padding: 20px;
    }

    .problem-item p {
        font-size: 15px;
    }

    .problems-solution {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .problems-solution strong {
        font-size: 20px;
    }
}/* 料金プランセクション */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing .section-title {
    font-size: clamp(36px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.pricing .section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    padding: 50px 60px;
    border-radius: 32px;
    box-shadow: 0 20px 80px rgba(139, 92, 246, 0.12);
    position: relative;
    border: 3px solid #8b5cf6;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.plan-name {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1f2937;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.plan-price {
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 60px;
    font-weight: 900;
    color: #8b5cf6;
    line-height: 1;
}

.price-unit {
    font-size: 20px;
    color: #6b7280;
    font-weight: 600;
}

.price-yearly {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    font-weight: 500;
}

.plan-features {
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-item.highlight {
    background: rgba(139, 92, 246, 0.08);
    padding: 20px 16px;
    margin: 16px -16px;
    border-radius: 16px;
    font-weight: 600;
    border: none;
}

.feature-item.highlight .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    font-size: 18px;
}

/* オプション料金 */
.pricing-options {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing-options h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1f2937;
    font-weight: 700;
}

.pricing-options ul {
    list-style: none;
    padding: 0;
}

.pricing-options li {
    padding: 8px 0;
    font-size: 16px;
    color: #4b5563;
}

/* メッセージ */
.pricing-message {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-message strong {
    font-size: 20px;
    color: #8b5cf6;
    font-weight: 900;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .pricing .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 42px;
    }

    .pricing-options {
        margin: 40px auto;
        padding: 30px 20px;
    }
}/* 解約後も安心セクション */
.security {
    background: linear-gradient(180deg, white 0%, #faf5ff 100%);
    padding: 100px 0;
    position: relative;
}

.security .section-title {
    font-size: clamp(36px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.security .section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.security-content {
    max-width: 900px;
    margin: 0 auto;
}

.security-lead {
    text-align: center;
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.6;
}

.security-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

.security-item .check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 500;
}

.security-note {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 30px;
    font-style: italic;
}

.security-message {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
    padding: 40px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.security-message {
    font-size: 20px;
    color: #8b5cf6;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* 装飾要素 */
.security::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.security::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .security {
        padding: 60px 0;
    }

    .security .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .security .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .security-lead {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .security-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .security-item {
        padding: 20px;
    }

    .security-message {
        padding: 30px 20px;
        font-size: 18px;
    }
}/* CareSiteの想いセクション - 柔らかいデザイン */
.story {
    background:
        linear-gradient(180deg, rgba(250, 245, 255, 0.95) 0%, rgba(243, 244, 246, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%),
        url('images/22673406_l.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.story::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.story .section-title {
    font-size: clamp(36px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.story .section-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #8b5cf6;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.story-text {
    order: 1;
}

.story-image {
    order: 2;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.1);
    text-align: center;
    height: fit-content;
}

.story-image-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.story-image-text {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.6;
}

.story-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.story-content p strong {
    color: #8b5cf6;
    font-weight: 700;
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
}

.story-highlight p {
    margin: 40px 0 20px 0;
    font-size: 22px;
    color: #1f2937;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.story-highlight p:last-child {
    margin-bottom: 30px;
    font-size: 18px;
    color: #4b5563;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.story-highlight strong {
    color: #8b5cf6;
    font-size: 26px;
    font-weight: 900;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.story-message {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

/* 装飾的なイラスト要素 */
.story-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.story-icon-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    min-width: 120px;
}

.story-icon-item .icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.story-icon-item .text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .story {
        padding: 80px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
        margin: 0 auto;
        max-width: 280px;
    }

    .story .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .story .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .story-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        text-align: center;
    }

    .story-highlight {
        padding: 35px 25px;
        margin: 35px auto;
    }

    .story-highlight strong {
        font-size: 22px;
    }

    .story-highlight p {
        font-size: 18px;
    }

    .story-message {
        font-size: 18px;
        margin-top: 30px;
        padding: 25px;
    }

    .story-icons {
        gap: 20px;
    }

    .story-icon-item {
        min-width: 100px;
        padding: 15px;
    }

    .story-icon-item .icon {
        font-size: 32px;
    }
}/* CTA Section - まずは無料相談から始めませんか？ */
.cta-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.cta-section .section-title {
    font-size: clamp(32px, 5vw, 42px);
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section .section-subtitle {
    font-size: 18px;
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section .cta-description {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.btn-submit {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* Contact Alternative */
.contact-alternative {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(167, 139, 250, 0.03) 100%);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.alt-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
}

.phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-cta:hover {
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 24px;
}

.phone-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #8b5cf6;
}

.phone-hours {
    font-size: 14px;
    color: #6b7280;
}

.phone-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-section .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-section .cta-description {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-alternative {
        padding: 30px 24px;
    }

    .phone-cta {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .phone-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-section .section-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .cta-section .cta-description {
        font-size: 14px;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .cta-content {
        padding: 0 16px;
        gap: 32px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 15px;
    }

    .btn-submit {
        padding: 14px 28px;
        font-size: 16px;
    }

    .contact-alternative {
        padding: 24px 20px;
    }

    .alt-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .phone-number {
        font-size: 18px;
    }
}/* Footer Styles - 仕様書準拠 */
:root {
    --text-dark: #1f2937;
}

.footer {
    background: var(--text-dark);
    color: #ffffff;
    padding: 60px 0 30px 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* ロゴ部分 */
.footer-info .logo {
    margin-bottom: 8px;
}

.footer-info .logo-text {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.footer-info .logo-sub {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    color: #ffffff;
    margin: 0;
}

/* セクション見出し */
.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* サービスリンク */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* お問い合わせ */
.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-contact .contact-phone {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
}

.footer-contact .contact-hours {
    margin-bottom: 12px;
    font-size: 12px;
}

.footer-contact .contact-email {
    margin-bottom: 16px;
}

.footer-company {
    margin-top: 16px;
}

.footer-company p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 24px 0;
    }

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

    .footer-brand h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-nav h3,
    .footer-contact h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-nav a {
        font-size: 15px;
    }

    .footer-nav li {
        margin-bottom: 14px;
    }

    .contact-info p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .contact-sub {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-nav h3,
    .footer-contact h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-nav li {
        margin-bottom: 12px;
    }

    .contact-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact-icon {
        font-size: 14px;
        width: 18px;
    }

    .contact-sub {
        font-size: 12px;
        margin-left: 24px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}