@charset "UTF-8";

/* 10_service.css - お悩みに合わせて選べるWeb支援LP */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.recruitment-site-lp {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
	padding: 0 0 50px 0;
}

/* .wrapper は global.css に移動 */

/* Hero Section */
.hero-section {
    background: url("../img/10_service/hero.png") no-repeat right center;
    background-size: 50% auto;
    padding: 80px 0;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 0 0;
    padding: 0 30px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc000c;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .btn-primary {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    position: relative;
}

.hero-cta .btn-primary:hover {
    background: #b3000a;
}

.hero-cta .btn-primary::after {
    content: "→";
    margin-left: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hero-cta .btn-primary:hover::after {
    transform: translateX(3px);
}

/* Section Styles */
.section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #dc000c;
    text-align: center;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Service Overview Section */
.service-overview-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    width: 100%;
}

.overview-image {
    margin-top: 40px;
}

.overview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Service Steps Section */
.service-steps-section {
    padding: 80px 0;
    background: #fff;
    width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.step-number {
    background: #dc000c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: #fff;
    width: 100%;
}

.consultation-cards {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.consultation-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.card-description {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
    width: 100%;
}

.services-list {
    margin-top: 50px;
}

.services-ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.services-ul li {
    background: #f8f9fa;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 0;
    border-left: 4px solid #dc000c;
    font-size: 1.1rem;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(220, 0, 12, 0.15);
}

.services-ul li:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #fff;
    width: 100%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.card-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc000c;
    margin-bottom: 10px;
}

.note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    position: relative;
}

.btn-secondary:hover {
    background: #b3000a;
}

.btn-secondary::after {
    content: "→";
    margin-left: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-secondary:hover::after {
    transform: translateX(3px);
}
.btn-primary{
    color: #FFF;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .wrapper のレスポンシブは global.css に移動 */

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .services-ul li {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}


/* Print Styles */
@media print {

    /* プリントスタイルは global.css に移動 */
}