:root {
    --primary-color: #4d84e4;
    --primary-dark: #f2f6fe;
    --primary-light:#f2f6fe;
    --secondary-color: #f8fafc;
    --accent-color: #4d84e4;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color:#e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #4d84e4;
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 40%, var(--primary-light) 100%);
    padding: 100px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 98%;
    border-radius: 20px;
    margin: 20px auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 100,100" fill="white" opacity="0.4"/></svg>');
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    color: var(--text-primary);
    max-width: 560px;
}

.hero-text p {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text ul {
    margin-bottom: 40px;
}

.hero-text ul li {
    font-size: 18px;
    line-height: 2.4;
    display: flex;
    align-items: center;
}

.accent {
    /* color: var(--primary-color); */
    font-weight: 600;
    font-size: 1.2rem;
}

.hero-text ul li .material-symbols-outlined {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 5px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.hero-title span {
    font-size: 60px;
    color: #4d84e4;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

.section {
    padding: 60px 0;
}

.section-after {
    background: var(--secondary-color);
    padding: 80px 0;
}

.section-after .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-after .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-alt {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

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

.section-alt .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-alt .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-alt .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-alt .feature-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.section-alt .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-alt .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.section-alt .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 20px rgba(77, 132, 228, 0.3);
}

.section-alt .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.section-alt .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-alt .feature-card ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid #f1f5f9;
}

.section-alt .feature-card ul li:last-child {
    border-bottom: none;
}

.section-alt .feature-card ul li:before {
    content: "◆";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Card specific styling */
.section-alt .feature-card:first-child {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.section-alt .feature-card:first-child .feature-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.section-alt .feature-card:last-child {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-alt .feature-card:last-child .feature-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* Badge for existing users */
.section-alt .feature-card:first-child::after {
    content: '既存ユーザー';
    position: absolute;
    top: 25px;
    right: -15px;
    background: #2563eb;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(12deg);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Badge for new users */
.section-alt .feature-card:last-child::after {
    content: '新規ユーザー';
    position: absolute;
    top: 25px;
    right: -15px;
    background: #0ea5e9;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(12deg);
    box-shadow: 0 4px 8px rgba(14, 165, 233, 0.3);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-section {
    /* background: var(--primary-light); */
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stat-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Results Content Styling */
.results-content {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.content-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.6;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.highlight-section,
.methodology-section,
.value-proposition,
.service-summary {
    padding: 2rem 0;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.results-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: left;
}

.results-paragraph.highlight {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.results-paragraph.key-point {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.results-paragraph.conclusion {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    /* border-left: 4px solid var(--success-color); */
    font-weight: 500;
    margin-top: 2rem;
}

.results-paragraph strong {
    color: var(--primary-color);
    font-weight: 700;
}

.steps-section {
    background: white;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(77, 132, 228, 0.3);
}

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

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-image {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 0;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(77, 132, 228, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(77, 132, 228, 0.3);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    background: var(--primary-light);
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 1rem;
}

.highlight-box {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.pricing-section {
    background: var(--secondary-color);
    padding: 80px 0;
}

/* Pricing Section - First Container Styling */
.pricing-section .container:first-child {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-section .container:first-child h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-section .container:first-child .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section .container:first-child ul {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
    list-style: none;
}

.pricing-section .container:first-child ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.pricing-section .container:first-child ul li:last-child {
    border-bottom: none;
}

.pricing-section .container:first-child ul li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-section .container:first-child > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin: 1.5rem auto;
    max-width: 700px;
}

.pricing-section .container:first-child > p:last-of-type {
    font-weight: 500;
    color: var(--text-primary);
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    /* border-left: 4px solid var(--primary-color); */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.pricing-card.recommended::before {
    content: 'おすすめ';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.pricing-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pricing-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.comparison-before {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 3px solid #cbd5e1;
    position: relative;
}

.comparison-before::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #64748b, #94a3b8);
}

.comparison-after {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 3px solid #93c5fd;
    position: relative;
}

.comparison-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.comparison-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.comparison-card h3 i {
    font-size: 2rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.comparison-before ul li {
    color: #475569;
}

.comparison-before ul li:before {
    content: "━";
    color: #64748b;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.comparison-after ul li {
    color: #1e40af;
}

.comparison-after ul li:before {
    content: "●";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Impact Badge */
.comparison-before::after {
    content: 'BEFORE';
    position: absolute;
    top: 20px;
    right: -10px;
    background: #64748b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
    box-shadow: 0 4px 8px rgba(100, 116, 139, 0.3);
}

.comparison-after::after {
    content: 'AFTER';
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(15deg);
    box-shadow: 0 4px 8px rgba(77, 132, 228, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.contact-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.contact-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-section ul li {
    line-height: 2.4;
    color: #fff;
}

.contact-section ul li a {
    color: #fff;
}

.contact-section ul li strong {
    color: #B9CFF3;
}

/* Section 1.5 Styling */
.section-1\.5 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

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

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.features-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.features-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 0.8rem;
    border-radius: 2px;
}


.wantedly-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.wantedly-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.wantedly-features li:last-child {
    border-bottom: none;
}

.wantedly-features i {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.context-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 2rem;
}

/* Challenge Section - しかし、課題もあります */
.challenge-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    /* border-left: 6px solid #94a3b8; */
    transition: all 0.3s ease;
}

.challenge-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* border-left-color: #64748b; */
}

.challenge-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.challenge-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f59e0b;
    margin-top: 0.8rem;
    border-radius: 2px;
}

.challenge-content {
    margin-top: 1.5rem;
}

.challenge-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Solution Section - 解決策はYouTubeでした */
.solution-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    /* border-left: 6px solid var(--primary-color); */
    transition: all 0.3s ease;
}

.solution-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 132, 228, 0.15);
}

.solution-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.solution-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 0.8rem;
    border-radius: 2px;
}

.solution-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solution-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.solution-text:last-child {
    margin-bottom: 0;
}

/* Conclusion Section */
.conclusion-section {
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .conclusion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 12px 12px 0 0;
} */

.conclusion-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.conclusion-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.conclusion-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #10b981;
    margin-top: 0.8rem;
    border-radius: 2px;
}

.conclusion-content {
    background: white;
    border-radius: 8px;
    /* padding: 2rem; */
    margin-top: 1.5rem;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid #d1fae5; */
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.conclusion-text:last-child {
    margin-bottom: 0;
}

.conclusion-highlight {
    background: #fff;
    color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    /* box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); */
}

.conclusion-highlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.conclusion-highlight-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Success Section - 成功の組み合わせ */
.success-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #e5e7eb;
}

.success-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    position: relative;
}

.success-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #10b981;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.success-section .section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.success-combination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    flex-wrap: wrap;
}

.success-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 240px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.success-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    box-shadow: 0 6px 15px rgba(77, 132, 228, 0.3);
}

.success-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.success-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.plus-icon,
.equals-icon {
    font-size: 2.5rem;
    color: #94a3b8;
    font-weight: bold;
}

.success-result {
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: white;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.success-result-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.success-result-text {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid,
    .feature-grid,
    .pricing-grid,
    .comparison-grid,
    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        margin-bottom: 1rem;
    }

    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .results-paragraph {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .results-paragraph.key-point {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .content-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .content-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-heading {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        padding-left: 0.8rem;
    }

    .content-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .content-header::after {
        width: 60px;
        height: 3px;
    }

    .content-body {
        gap: 2rem;
    }

    .features-section,
    .challenge-section,
    .solution-section,
    .conclusion-highlight {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .wantedly-features li {
        font-size: 1rem;
    }
    
    .features-title,
    .challenge-title,
    .solution-title {
        font-size: 1.3rem;
    }
    
    .conclusion-title {
        font-size: 1.5rem;
    }

    .pricing-section .container:first-child {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .pricing-section .container:first-child h2 {
        font-size: 1.8rem;
    }

    .pricing-section .container:first-child .section-subtitle {
        font-size: 1rem;
    }

    .pricing-section .container:first-child ul li {
        font-size: 1rem;
    }

    .section-after .section-title {
        font-size: 2rem;
    }

    .section-after .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-card {
        padding: 2rem;
    }

    .comparison-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .comparison-card ul li {
        font-size: 1rem;
    }

    .comparison-before::after,
    .comparison-after::after {
        top: 15px;
        right: -5px;
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .section-alt .section-title {
        font-size: 2rem;
    }

    .section-alt .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .section-alt .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-alt .feature-card {
        padding: 2rem;
    }

    .section-alt .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-alt .feature-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section-alt .feature-card ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .section-alt .feature-card:first-child::after,
    .section-alt .feature-card:last-child::after {
        top: 20px;
        right: -10px;
        font-size: 0.6rem;
        padding: 0.3rem 0.8rem;
    }

    /* Challenge Section Mobile */
    .challenge-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .challenge-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .challenge-title::after {
        width: 40px;
        height: 2px;
        margin-top: 0.6rem;
    }

    .challenge-content {
        margin-top: 1rem;
    }

    .challenge-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Solution Section Mobile */
    .solution-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .solution-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .solution-title::after {
        width: 40px;
        height: 2px;
        margin-top: 0.6rem;
    }

    .solution-content {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .solution-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    /* Conclusion Section Mobile */
    .conclusion-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .conclusion-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .conclusion-title::after {
        width: 40px;
        height: 2px;
        margin-top: 0.6rem;
    }

    .conclusion-content {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .conclusion-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .conclusion-highlight {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .conclusion-highlight-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .conclusion-highlight-text {
        font-size: 0.9rem;
    }
}