/* 採用サイト制作LP - 15_service.css */
.recruitment-site-lp {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
	padding: 0 0 50px 0;
}

.recruitment-site-lp .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーローセクション */
.hero-section {
    background: url("../img/15_service/hero.jpg") no-repeat right center #FFF;
    background-size: 50% auto;
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}


.recruitment-site-lp .hero-content {
    position: relative;
    z-index: 2;
}

.recruitment-site-lp .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.recruitment-site-lp .hero-subtitle {
    color: #666;
    font-size: 1.8rem;
    font-weight: 400;
}

.recruitment-site-lp .hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
}

.recruitment-site-lp .hero-illustration {
    margin-top: 40px;
}

.recruitment-site-lp .illustration-placeholder {
    background: #dc000c;
    color: white;
    padding: 40px;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(220, 0, 12, 0.2);
}

/* セクション共通スタイル */
.recruitment-site-lp .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.recruitment-site-lp .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #dc000c;
    border-radius: 0;
}

.recruitment-site-lp .section-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 課題セクション */
.recruitment-site-lp .challenges-section {
    padding: 80px 0;
    background: #fff;
}

.recruitment-site-lp .shortage-visualization {
    margin: 40px 0;
    text-align: center;
}

.recruitment-site-lp .shortage-chart {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.recruitment-site-lp .chart-item {
    text-align: center;
    min-width: 200px;
}

.recruitment-site-lp .chart-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.recruitment-site-lp .chart-bar {
    width: 200px;
    height: 20px;
    background: #e9ecef;
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto 10px;
}

.recruitment-site-lp .chart-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc000c, #ff4444);
    border-radius: 0;
    transition: width 1s ease;
}

.recruitment-site-lp .chart-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.recruitment-site-lp .chart-note {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

.recruitment-site-lp .challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.recruitment-site-lp .challenge-item {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-site-lp .challenge-item:hover {
    border-color: #dc000c;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 0, 12, 0.1);
}

.recruitment-site-lp .challenge-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.recruitment-site-lp .challenge-icon img{
    max-width: 80%;
    height: auto;
}

.recruitment-site-lp .challenge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.recruitment-site-lp .challenge-description {
    color: #666;
    line-height: 1.6;
}

.recruitment-site-lp .challenges-visual {
    margin: 40px 0;
    text-align: center;
}

.recruitment-site-lp .visual-note {
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0;
    border: 2px dashed #dc000c;
}

/* 問題セクション */
.recruitment-site-lp .problems-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.recruitment-site-lp .problems-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.recruitment-site-lp .problem-card {
    background: #fff;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recruitment-site-lp .problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 0, 12, 0.15);
}

.recruitment-site-lp .problem-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.recruitment-site-lp .problem-badge {
    background: #dc000c;
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.recruitment-site-lp .problem-badge.negative {
    background: #dc000c;
}

.recruitment-site-lp .problem-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.recruitment-site-lp .problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.recruitment-site-lp .problem-before,
.recruitment-site-lp .problem-after {
    padding: 20px;
    border-radius: 0;
    position: relative;
}

.recruitment-site-lp .problem-before {
    background: #ffe6e6;
    border: 2px solid #ffcccc;
}

.recruitment-site-lp .problem-after {
    background: #e6f7e6;
    border: 2px solid #ccffcc;
}

.recruitment-site-lp .before-icon,
.recruitment-site-lp .after-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.recruitment-site-lp .before-icon {
    background: #dc000c;
    color: white;
}

.recruitment-site-lp .after-icon {
    background: #28a745;
    color: white;
}

.recruitment-site-lp .before-text,
.recruitment-site-lp .after-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
}

/* 解決策セクション */
.recruitment-site-lp .solution-section {
    padding: 80px 0;
    background: #fff;
}

.recruitment-site-lp .flow-diagram {
    margin-top: 40px;
}

.recruitment-site-lp .flow-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0;
    border: 2px dashed #dc000c;
}

.recruitment-site-lp .flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.recruitment-site-lp .flow-step {
    background: #f8f9fa;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recruitment-site-lp .flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #dc000c;
}

.recruitment-site-lp .flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 0, 12, 0.1);
}

.recruitment-site-lp .flow-step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.recruitment-site-lp .flow-step-icon img{
    max-width: 60%;
    height: auto;
}

.recruitment-site-lp .flow-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.recruitment-site-lp .flow-step-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.recruitment-site-lp .flow-step-content {
    text-align: left;
}

.recruitment-site-lp .flow-step-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.recruitment-site-lp .flow-step-highlight {
    background: #fff3cd;
    padding: 10px;
    border-radius: 0;
    border-left: 4px solid #dc000c;
    font-weight: 600;
    color: #333;
}

.recruitment-site-lp .flow-step-purpose {
    background: #dc000c;
    color: white;
    padding: 15px;
    border-radius: 0;
    margin-top: 20px;
    text-align: center;
}

.recruitment-site-lp .flow-note-bottom {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-site-lp .flow-note-bottom p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* 料金セクション */
.recruitment-site-lp .pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.recruitment-site-lp .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.recruitment-site-lp .pricing-card {
    background: #fff;
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recruitment-site-lp .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #dc000c;
}

.recruitment-site-lp .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 0, 12, 0.15);
}

.recruitment-site-lp .plan-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.recruitment-site-lp .plan-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.recruitment-site-lp .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.recruitment-site-lp .tax-note {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.recruitment-site-lp .plan-features {
    margin-top: 30px;
}

.recruitment-site-lp .feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.recruitment-site-lp .feature-row:last-child {
    border-bottom: none;
}

.recruitment-site-lp .feature-name {
    color: #666;
    font-weight: 500;
}

.recruitment-site-lp .feature-value {
    color: #333;
    font-weight: 600;
}

.recruitment-site-lp .feature-check {
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.recruitment-site-lp .feature-dash {
    color: #ccc;
    font-weight: 700;
    font-size: 1.2rem;
}

.recruitment-site-lp .pricing-notes {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-site-lp .note-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.recruitment-site-lp .note-item:last-child {
    margin-bottom: 0;
}

.recruitment-site-lp .note-number {
    background: #dc000c;
    color: white;
    padding: 4px 8px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.recruitment-site-lp .note-text {
    color: #666;
    line-height: 1.6;
}

.recruitment-site-lp .pricing-options {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-site-lp .pricing-options h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.recruitment-site-lp .options-grid {
    display: grid;
    gap: 15px;
}

.recruitment-site-lp .option-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 20px;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0;
}

.recruitment-site-lp .option-name {
    font-weight: 600;
    color: #333;
}

.recruitment-site-lp .option-description {
    color: #666;
    font-size: 0.9rem;
}

.recruitment-site-lp .option-price {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

.recruitment-site-lp .pricing-cta {
    margin-top: 40px;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recruitment-site-lp .pricing-cta p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recruitment-site-lp .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.recruitment-site-lp .cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recruitment-site-lp .cta-button.primary {
    background: #dc000c;
    color: white;
}

.recruitment-site-lp .cta-button.primary:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

.recruitment-site-lp .cta-button.secondary {
    background: transparent;
    color: #000;
    border-color: #dc000c;
}

.recruitment-site-lp .cta-button.secondary:hover {
    background: #dc000c;
    color: white;
}

/* 制作の流れセクション */
.recruitment-site-lp .process-section {
    padding: 80px 0;
    background: #fff;
}

.recruitment-site-lp .process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.recruitment-site-lp .process-step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.recruitment-site-lp .process-step.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.recruitment-site-lp .step-number {
    background: #dc000c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.recruitment-site-lp .step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-site-lp .step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.recruitment-site-lp .step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.recruitment-site-lp .step-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.recruitment-site-lp .step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.recruitment-site-lp .step-description {
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
}

/* CTAセクション */
.recruitment-site-lp .cta-section {
    padding: 80px 0;
    background: #dc000c;
    text-align: center;
}

.recruitment-site-lp .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.recruitment-site-lp .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.recruitment-site-lp .cta-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

.recruitment-site-lp .cta-button {
    display: inline-block;
    background: white;
    color: #000;
    padding: 20px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.recruitment-site-lp .cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* よくある質問セクション */
.recruitment-site-lp .faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.recruitment-site-lp .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.recruitment-site-lp .faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recruitment-site-lp .faq-item:hover {
    border-color: #dc000c;
    box-shadow: 0 5px 15px rgba(220, 0, 12, 0.1);
}

.recruitment-site-lp .faq-question {
    background: #fff;
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.recruitment-site-lp .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #000;
    transition: transform 0.3s ease;
}

.recruitment-site-lp .faq-question:hover {
    background: #dc000c;
    color: white;
}

.recruitment-site-lp .faq-question:hover::after {
    color: white;
}

.recruitment-site-lp .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.recruitment-site-lp .faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.recruitment-site-lp .faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .recruitment-site-lp .hero-title {
        font-size: 2rem;
    }

    .recruitment-site-lp .hero-subtitle {
        font-size: 1.4rem;
    }

    .recruitment-site-lp .section-title {
        font-size: 1.8rem;
    }

    .recruitment-site-lp .challenges-grid {
        grid-template-columns: 1fr;
    }

    .recruitment-site-lp .problem-content {
        grid-template-columns: 1fr;
    }

    .recruitment-site-lp .flow-steps {
        grid-template-columns: 1fr;
    }

    .recruitment-site-lp .pricing-cards {
        grid-template-columns: 1fr;
    }

    .recruitment-site-lp .process-step {
        flex-direction: column;
        text-align: center;
    }

    .recruitment-site-lp .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .recruitment-site-lp .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .recruitment-site-lp .option-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .recruitment-site-lp .feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .recruitment-site-lp .wrapper {
        padding: 0 15px;
    }

    .recruitment-site-lp .hero-section {
        padding: 60px 0;
    }

    .recruitment-site-lp .challenges-section,
    .recruitment-site-lp .problems-section,
    .recruitment-site-lp .solution-section,
    .recruitment-site-lp .pricing-section,
    .recruitment-site-lp .process-section,
    .recruitment-site-lp .cta-section,
    .recruitment-site-lp .faq-section {
        padding: 60px 0;
    }

    .recruitment-site-lp .shortage-chart {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .recruitment-site-lp .hero-title {
        font-size: 1.6rem;
    }

    .recruitment-site-lp .hero-subtitle {
        font-size: 1.2rem;
    }

    .recruitment-site-lp .section-title {
        font-size: 1.5rem;
    }

    .recruitment-site-lp .pricing-card {
        padding: 25px;
    }

    .recruitment-site-lp .plan-price {
        font-size: 2rem;
    }

    .recruitment-site-lp .step-content {
        padding: 20px;
    }

    .recruitment-site-lp .cta-title {
        font-size: 1.6rem;
    }

    .recruitment-site-lp .cta-description {
        font-size: 1rem;
    }
}

/* スクロールバーカスタマイズ */
.recruitment-site-lp ::-webkit-scrollbar {
    width: 8px;
}

.recruitment-site-lp ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.recruitment-site-lp ::-webkit-scrollbar-thumb {
    background: #dc000c;
    border-radius: 0;
}

.recruitment-site-lp ::-webkit-scrollbar-thumb:hover {
    background: #b3000a;
}