/* 医療機関サイト制作LP - 14_service.css */
.consul_jisseki h2{
    font-size: 1rem;
}
.medical-site-lp {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
	padding: 0 0 50px 0;
}

.medical-site-lp .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーローセクション */
.hero-section {
    background: url("../img/14_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;
}


.medical-site-lp .hero-content {
    position: relative;
    z-index: 2;
}

.medical-site-lp .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}

.medical-site-lp .hero-subtitle {
    color: #666;
    font-size: 1.8rem;
    font-weight: 400;
}

.medical-site-lp .hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    margin-right: auto;
}

.medical-site-lp .hero-illustration {
    margin-top: 40px;
}

.medical-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);
}

/* セクション共通スタイル */
.medical-site-lp .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.medical-site-lp .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #dc000c;
    border-radius: 0;
}

.medical-site-lp .section-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* 問題セクション */
.medical-site-lp .problems-section {
    padding: 80px 0;
    background: #fff;
}

.medical-site-lp .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.medical-site-lp .problem-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.medical-site-lp .problem-card:hover {
    border-color: #dc000c;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 0, 12, 0.1);
}

.medical-site-lp .problem-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc000c;
    margin-bottom: 15px;
    line-height: 1.4;
}

.medical-site-lp .problem-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.medical-site-lp .problem-link {
    display: block;
    background: #f8f9fa;
    border: 1px solid #dc000c;
    color: #000;
    padding: 15px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.medical-site-lp .problem-link:hover {
    background: #dc000c;
    color: white;
}

/* 解決策セクション */
.medical-site-lp .solution-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.medical-site-lp .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.medical-site-lp .feature-card {
    background: #fff;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.medical-site-lp .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #dc000c;
}

.medical-site-lp .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 0, 12, 0.1);
}

.medical-site-lp .feature-number {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.medical-site-lp .feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.medical-site-lp .feature-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.medical-site-lp .feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.medical-site-lp .feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.medical-site-lp .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.medical-site-lp .feature-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.medical-site-lp .stat-item {
    background: #f8f9fa;
    color: #000;
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.medical-site-lp .feature-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.medical-site-lp .feature-link:hover {
    color: #b3000a;
}

/* ポートフォリオセクション */
.medical-site-lp .portfolio-section {
    padding: 80px 0;
    background: #fff;
}

.medical-site-lp .portfolio-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dc000c;
    border-radius: 0;
    padding: 60px;
    text-align: center;
    margin-top: 40px;
}

.medical-site-lp .scroll-indicator {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
}

/* 料金セクション */
.medical-site-lp .pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.medical-site-lp .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.medical-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;
}

.medical-site-lp .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #dc000c;
}

.medical-site-lp .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 0, 12, 0.15);
}

.medical-site-lp .plan-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.medical-site-lp .plan-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.medical-site-lp .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.medical-site-lp .tax-note {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.medical-site-lp .plan-features {
    margin-top: 30px;
}

.medical-site-lp .feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.medical-site-lp .feature-row:last-child {
    border-bottom: none;
}

.medical-site-lp .feature-name {
    color: #666;
    font-weight: 500;
}

.medical-site-lp .feature-value {
    color: #333;
    font-weight: 600;
}

.medical-site-lp .feature-check {
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.medical-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);
}

.medical-site-lp .note-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.medical-site-lp .note-item:last-child {
    margin-bottom: 0;
}

.medical-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;
}

.medical-site-lp .note-text {
    color: #666;
    line-height: 1.6;
}

.medical-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);
}

.medical-site-lp .pricing-options h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.medical-site-lp .options-grid {
    display: grid;
    gap: 15px;
}

.medical-site-lp .option-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 20px;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0;
}

.medical-site-lp .option-name {
    font-weight: 600;
    color: #333;
}

.medical-site-lp .option-description {
    color: #666;
    font-size: 0.9rem;
}

.medical-site-lp .option-price {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

.medical-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);
}

.medical-site-lp .pricing-cta p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.medical-site-lp .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.medical-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;
}

.medical-site-lp .cta-button.primary {
    background: #dc000c;
    color: white;
}

.medical-site-lp .cta-button.primary:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

.medical-site-lp .cta-button.secondary {
    background: transparent;
    color: #000;
    border-color: #dc000c;
}

.medical-site-lp .cta-button.secondary:hover {
    background: #dc000c;
    color: white;
}

/* 制作の流れセクション */
.medical-site-lp .process-section {
    padding: 80px 0;
    background: #fff;
}

.medical-site-lp .process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.medical-site-lp .process-step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.medical-site-lp .process-step.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.medical-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;
}

.medical-site-lp .step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.medical-site-lp .step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.medical-site-lp .step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.medical-site-lp .step-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.medical-site-lp .step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.medical-site-lp .step-description {
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
}

/* CTAセクション */
.medical-site-lp .cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.medical-site-lp .cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.medical-site-lp .cta-card {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.medical-site-lp .cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #dc000c;
}

.medical-site-lp .cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 0, 12, 0.15);
}

.medical-site-lp .cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.medical-site-lp .cta-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.medical-site-lp .cta-button {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #dc000c;
}

.medical-site-lp .cta-button:hover {
    background: #b3000a;
    border-color: #b3000a;
    transform: translateY(-2px);
}

/* よくある質問セクション */
.medical-site-lp .faq-section {
    padding: 80px 0;
    background: #fff;
}

.medical-site-lp .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.medical-site-lp .faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.medical-site-lp .faq-item:hover {
    border-color: #dc000c;
    box-shadow: 0 5px 15px rgba(220, 0, 12, 0.1);
}

.medical-site-lp .faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.medical-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;
}

.medical-site-lp .faq-question:hover {
    background: #dc000c;
    color: white;
}

.medical-site-lp .faq-question:hover::after {
    color: white;
}

.medical-site-lp .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.medical-site-lp .faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.medical-site-lp .faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 私たちの想いセクション */
.medical-site-lp .mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.medical-site-lp .mission-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.medical-site-lp .mission-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.medical-site-lp .mission-content p:last-child {
    margin-bottom: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .medical-site-lp .hero-title {
        font-size: 2rem;
    }

    .medical-site-lp .hero-subtitle {
        font-size: 1.4rem;
    }

    .medical-site-lp .section-title {
        font-size: 1.8rem;
    }

    .medical-site-lp .problems-grid {
        grid-template-columns: 1fr;
    }

    .medical-site-lp .features-grid {
        grid-template-columns: 1fr;
    }

    .medical-site-lp .pricing-cards {
        grid-template-columns: 1fr;
    }

    .medical-site-lp .cta-cards {
        grid-template-columns: 1fr;
    }

    .medical-site-lp .process-step {
        flex-direction: column;
        text-align: center;
    }

    .medical-site-lp .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .medical-site-lp .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .medical-site-lp .option-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .medical-site-lp .feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .medical-site-lp .wrapper {
        padding: 0 15px;
    }

    .medical-site-lp .hero-section {
        padding: 60px 0;
    }

    .medical-site-lp .problems-section,
    .medical-site-lp .solution-section,
    .medical-site-lp .portfolio-section,
    .medical-site-lp .pricing-section,
    .medical-site-lp .process-section,
    .medical-site-lp .cta-section,
    .medical-site-lp .faq-section,
    .medical-site-lp .mission-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .medical-site-lp .hero-title {
        font-size: 1.6rem;
    }

    .medical-site-lp .hero-subtitle {
        font-size: 1.2rem;
    }

    .medical-site-lp .section-title {
        font-size: 1.5rem;
    }

    .medical-site-lp .pricing-card,
    .medical-site-lp .cta-card {
        padding: 25px;
    }

    .medical-site-lp .plan-price {
        font-size: 2rem;
    }

    .medical-site-lp .step-content {
        padding: 20px;
    }

    .medical-site-lp .mission-content {
        padding: 25px;
    }
}



/* スクロールバーカスタマイズ */
.medical-site-lp ::-webkit-scrollbar {
    width: 8px;
}

.medical-site-lp ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.medical-site-lp ::-webkit-scrollbar-thumb {
    background: #dc000c;
    border-radius: 0;
}

.medical-site-lp ::-webkit-scrollbar-thumb:hover {
    background: #b3000a;
}