@charset "UTF-8";

/* 16_service.css - コーポレートサイト制作LP */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
	padding: 0 0 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: url("../img/16_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;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-subtitle-main {
    display: block;
    font-size: 1.8rem;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-description img{
    max-width: 70%;
    height: auto;
}

.illustration-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    transition: transform 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-5px);
}

.flow-icon {
    font-size: 2rem;
}

.flow-item span {
    font-weight: 600;
    color: #000;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

/* Role Section */
.role-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.role-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.role-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.role-icon img{
    max-width: 80%;
    height: auto;
}

.role-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.role-card p {
    color: #666;
    line-height: 1.6;
}

/* Types Section */
.types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.types-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.types-table {
    display: grid;
    gap: 20px;
    margin-top: 50px;
}

.type-item {
    background: white;
    padding: 25px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.type-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.type-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.type-item p {
    color: #666;
    line-height: 1.6;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: white;
}

.problems-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.problems-dialogue {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.problem-solution:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-side,
.solution-side {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 0;
}

.problem-side {
    background: #ffe6e6;
    border-left: 4px solid #ff4444;
}

.solution-side {
    background: #e6f7e6;
    border-left: 4px solid #44aa44;
}

.problem-icon,
.solution-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-side p,
.solution-side p {
    font-weight: 500;
    margin: 0;
}

.arrow {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
    text-align: center;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.plans-note {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-bottom: 40px;
}

.plans-content {
    display: grid;
    gap: 50px;
}

.plan-light,
.plan-advance {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.plan-light h3,
.plan-advance h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.plan-light p,
.plan-advance p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.plan-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
}

.feature-check {
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-text {
    font-weight: 500;
}
.feature-img{
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.feature-arrow {
    color: #000;
    font-weight: bold;
}

.feature-benefit {
    color: #666;
    font-style: italic;
}

.illustration-note {
    margin-top: 20px;
    color: #999;
    font-style: italic;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.pricing-card.light {
    border-color: #dc000c;
}

.pricing-card.advance {
    border-color: #dc000c;
    position: relative;
}

.pricing-card.advance::before {
    content: "おすすめ";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc000c;
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    background: #dc000c;
    color: white;
    padding: 25px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
}

.tax-note {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    padding: 30px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
    color: #333;
}

.feature-value {
    color: #666;
}

.feature-check {
    color: #000;
    font-weight: bold;
}

.pricing-notes {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0;
}

.note-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-number {
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.note-text {
    color: #666;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0;
}

.pricing-cta p {
    margin-bottom: 20px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #dc000c;
    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;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.step-content li {
    color: #666;
    margin-bottom: 5px;
}

.urgent-section {
    margin-top: 60px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.urgent-section h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 30px;
}

.urgent-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.timeline-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
}

.timeline-day {
    background: #dc000c;
    color: white;
    padding: 8px 15px;
    border-radius: 0;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.cta-card {
    background: linear-gradient(135deg, #dc000c 0%, #b3000a 100%);
    color: white;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-card .cta-button {
    background: white;
    color: #000;
    border: 2px solid white;
}

.cta-card .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dc000c;
    box-shadow: 0 5px 15px rgba(220, 0, 12, 0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #000;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #dc000c;
    color: white;
}

.faq-question:hover::after {
    color: white;
}

.faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle-main {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    .hero-description img{
        max-width: 100%;
        height: auto;
    }
    .illustration-flow {
        flex-direction: column;
        gap: 15px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .role-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-solution {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .urgent-timeline {
        grid-template-columns: 1fr;
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .feature-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle-main {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-card {
        margin: 0 10px;
    }

    .pricing-features {
        padding: 20px;
    }

    .process-step {
        padding: 20px;
    }

    .cta-card {
        padding: 30px 20px;
    }
}



/* Print Styles */
@media print {

    .hero-section,
    .cta-section {
        background: white !important;
    }

    .cta-button {
        background: #dc000c !important;
        color: white !important;
    }
}