:root {
    --primary-color: #0d6efd; /* A slightly more modern blue */
    --secondary-color: #198754; /* A slightly more modern green */
    --text-color: #212529;
    --background-color: #f8f9fa;
    --white-color: #fff;
    --light-gray-color: #e9ecef;
    --dark-gray-color: #343a40;
    --danger-color: #dc3545;
    --font-family: 'Noto Sans JP', sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
    color: #333;
    line-height: 1.7;
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1.2rem;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.4;
}

h2.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

.section-pre-title {
    text-align: center;
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    margin: 0;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-image-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-background-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    max-height: 75vh;
    object-fit: cover;
}

.hero-cta-section {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}



.hero-line-btn {
    background-color: #28a745;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    min-width: 250px;
    border: none;
    cursor: pointer;
}

.hero-line-btn:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    text-decoration: none;
    color: white;
}

.hero-mail-btn {
    background-color: #007bff;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    min-width: 220px;
    border: none;
    cursor: pointer;
}

.hero-mail-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: white;
}

/* Position buttons below the image */
.hero-cta-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile responsive styles for hero section */
@media (max-width: 768px) {
    .hero {
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-background-image {
        max-height: 60vh;
        object-fit: cover;
        object-position: center top;
    }
    
    .hero-cta-section {
        padding: 30px 20px;
    }
    
    .hero-cta-overlay {
        gap: 12px;
    }
    
    .hero-line-btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-width: 200px;
        border-radius: 25px;
    }
    
    .hero-mail-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 180px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-background-image {
        max-height: 50vh;
    }
    
    .hero-cta-section {
        padding: 25px 15px;
    }
    
    .hero-cta-overlay {
        gap: 10px;
        max-width: 300px;
    }
    
    .hero-line-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        line-height: 1.3;
        min-width: 180px;
        border-radius: 25px;
    }
    
    .hero-mail-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: 160px;
        border-radius: 25px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-background-image {
        max-height: 50vh;
    }
    
    .hero-cta-section {
        padding: 20px;
    }
    
    .hero-cta-overlay {
        flex-direction: row;
        gap: 20px;
        max-width: 600px;
    }
    
    .hero-line-btn, .hero-mail-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        min-width: 160px;
    }
}
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-primary {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: var(--white-color);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5da85f 0%, #43a047 100%);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Problems Section */
.problems-list {
    list-style: none;
    max-width: 600px;
    margin: 30px auto 0;
}
.problems-list li {
    background-color: var(--background-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    font-weight: 700;
    box-shadow: var(--box-shadow);
    transition: transform 0.2s;
}
.problems-list li:hover {
    transform: translateX(5px);
}

/* Solution Section */
.solution {
    background-color: var(--background-color);
}

.solution h2.solution-title {
    margin-bottom: 80px !important;
    text-align: center;
    padding-bottom: 40px !important;
    line-height: 2.2;
}

.medical-brand {
    position: relative;
    display: inline-block;
}

.medical-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    border-radius: 2px;
}
.solution-list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto 40px;
}
.solution-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}
.solution-list li .fas {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}
.section-cta {
    text-align: center;
}

/* Strengths Section */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.strength-item {
    background-color: var(--white-color);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow);
}
.strength-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8ff);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strength-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.strength-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Process Section */
.process {
    background-color: var(--background-color);
    padding: 80px 0;
}

.process-steps-new {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.step-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-final {
    margin-top: 50px;
    text-align: center;
}

.final-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-item {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}
.testimonial-author {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
}
.testimonial-author::before {
    content: '— ';
}


/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}
.pricing-card {
    background-color: var(--white-color);
    border: 1px solid var(--light-gray-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 25px;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}
.pricing-card .price-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 35px;
    min-height: 20px;
}
.pricing-card .price-subtitle.success-fee {
    color: var(--danger-color);
}
.pricing-card .pricing-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 35px;
    flex-grow: 1;
    width: 100%;
}
.pricing-card .pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.pricing-card .pricing-features li .fas {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}
.btn-dark {
    background-color: var(--dark-gray-color);
    color: var(--white-color);
    width: 100%;
    border-radius: 12px;
}
.btn-dark:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--light-gray-color);
    margin-bottom: 10px;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 60px 20px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    transition: background-color 0.2s;
}
.faq-question:hover {
    background-color: var(--background-color);
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}
.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 20px;
}
.faq-answer p {
    padding-bottom: 20px;
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: var(--white-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 上の境界線 - 斜線効果 */
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 3px,
            transparent 3px,
            transparent 15px
        );
    pointer-events: none;
    z-index: 1;
}

/* 下の境界線 - 斜線効果 */
.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 3px,
            transparent 3px,
            transparent 15px
        );
    pointer-events: none;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

/* カウンセリング画像のスタイル */
.final-cta-image {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    opacity: 0.3;
    z-index: 1;
}

.final-cta-image.right {
    left: auto;
    right: 10%;
    transform: translateY(-50%) scaleX(-1); /* 水平反転 */
}
.final-cta .section-title, .final-cta .section-pre-title {
    color: var(--white-color);
}
.final-cta .btn-primary {
    border-color: var(--white-color);
    color: var(--white-color);
}

.final-cta .btn-primary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}
.final-cta .btn-secondary {
    border-color: var(--white-color);
    color: var(--white-color);
}
.final-cta .btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Final CTA Buttons */
.final-cta .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.final-cta .hero-cta .btn {
    max-width: 400px;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.final-cta-message {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .final-cta .hero-cta {
        gap: 15px;
        margin-top: 30px;
    }
    
    .final-cta .hero-cta .btn {
        max-width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .final-cta .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .final-cta-message {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .final-cta-image {
        left: 5%;
        width: 180px;
        opacity: 0.2;
    }
    
    .final-cta-image.right {
        right: 5%;
        width: 180px;
    }
}

@media (max-width: 480px) {
    .final-cta .hero-cta {
        gap: 12px;
        margin-top: 25px;
    }
    
    .final-cta .hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .final-cta .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .final-cta-message {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .final-cta-image,
    .final-cta-image.right {
        display: none; /* 小さい画面では非表示 */
    }
}

/* Footer */
.footer {
    background-color: #333;
    color: var(--white-color);
    text-align: center;
    padding: 20px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h2.section-title {
        font-size: 1.8rem;
    }
    .hero-catchphrase {
        font-size: 2.2rem;
    }
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .step-circle {
        margin-bottom: 20px;
    }
    
    .step-content {
        margin-top: 0;
        width: 100%;
    }
    
    .final-banner {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    #pricing .col-lg-6 {
        padding: 0 10px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    #pricing .row {
        gap: 30px;
        flex-direction: column;
    }
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .faq-question {
        padding: 18px 55px 18px 18px;
        font-size: 1.05rem;
    }
    
    .faq-question::after {
        right: 18px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 15px 50px 15px 15px;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-question::after {
        right: 15px;
        font-size: 1.3rem;
    }
    
    #pricing .col-lg-6 {
        padding: 0 5px;
        margin-bottom: 25px;
    }
    
    .pricing-card .card-body {
        padding: 2rem 1.5rem;
    }
} 

body {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
    color: #333;
    line-height: 1.7;
}

p {
    margin-bottom: 1.2rem;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}





.feature-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.flow-step {
    margin-bottom: 50px;
    position: relative;
    padding-left: 40px;
}

.faq .accordion-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

#pricing {
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

#pricing .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

#pricing .col-lg-6 {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    max-width: 450px;
    flex: 1;
}

.pricing-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    flex-grow: 1; /* Add this */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-body {
    padding: 2.5rem;
}

.pricing-card .card-title {
    font-weight: 600;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 1px;
}

.pricing-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #343a40;
    border-radius: 2px;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #343a40;
}

.pricing-card .price .yen {
    font-size: 1.5rem;
    vertical-align: middle;
}

.pricing-card .btn {
    border-radius: 50px;
    padding: 1rem;
    font-weight: 600;
    background-color: #343a40;
    border-color: #343a40;
    transition: all 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #495057;
    border-color: #495057;
}

.text-danger {
    color: #dc3545 !important;
} 

/* Feature Images */
.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2575fc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Unpaid Overtime Section */
.unpaid-overtime {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-bottom: 1px solid #e9ecef;
}

.unpaid-overtime .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.unpaid-overtime .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unpaid-overtime .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.unpaid-overtime .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2575fc;
    margin-bottom: 15px;
    display: block;
}

.unpaid-overtime .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.service-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .unpaid-overtime .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unpaid-overtime .stat-number {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Problem Items */
.problem-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problem-item i {
    color: #dc3545;
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Flow Steps */
.flow-steps {
    padding: 20px 0;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #2575fc;
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Hero Section Updates */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
} 

/* Problems Bubble Section */
.problems-bubble {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    padding: 80px 20px 100px 20px;
    position: relative;
    overflow: hidden;
}

/* 上の境界線 - 斜線効果 */
.problems-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 3px,
            transparent 3px,
            transparent 15px
        );
    pointer-events: none;
    z-index: 1;
}

/* 下の境界線 - 斜線効果 */
.problems-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 3px,
            transparent 3px,
            transparent 15px
        );
    pointer-events: none;
    z-index: 1;
}



.problems-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.problems-header {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

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

.character-left,
.character-right {
    flex-shrink: 0;
}

.character-left img,
.character-right img {
    width: 120px;
    height: auto;
    max-width: 120px;
}

.problems-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.problems-subtitle {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.3;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.problem-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.problem-card p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
}

.problem-highlight {
    font-weight: bold;
    color: #5ca85f;
}

/* Arrow Transition Section */
.arrow-transition {
    background: white;
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.arrow-down {
    position: relative;
    display: inline-block;
}

.arrow-icon {
    background: white;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.arrow-icon i {
    font-size: 1.2rem;
    color: #4caf50;
    margin: -3px 0;
    animation: arrow-bounce 2s ease-in-out infinite;
}

.arrow-icon i:nth-child(1) {
    animation-delay: 0s;
}

.arrow-icon i:nth-child(2) {
    animation-delay: 0.3s;
}

.arrow-icon i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes arrow-bounce {
    0%, 100% { 
        transform: translateY(-2px); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(2px); 
        opacity: 1; 
    }
}





/* Responsive */
@media (max-width: 768px) {
    .problems-bubble {
        padding: 60px 20px;
    }
    
    .arrow-transition {
        padding: 40px 0;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .problem-card {
        padding: 20px 15px;
    }
    
    .problem-card p {
        font-size: 0.9rem;
    }
    
    .problems-subtitle {
        font-size: 1.8rem;
    }
    
    .problems-header {
        flex-direction: column;
        gap: 20px;
    }

    .character-left img,
    .character-right img {
        width: 80px;
        max-width: 80px;
    }

    .arrow-icon {
        padding: 15px;
        width: 50px;
        height: 50px;
    }

    .arrow-icon i {
        font-size: 1rem;
        margin: -2px 0;
    }
    
    .solution h2.solution-title {
        margin-bottom: 65px !important;
        padding-bottom: 35px !important;
        line-height: 2.0;
    }
    
    .medical-brand::after {
        height: 3px;
        bottom: -4px;
    }
    

}

@media (max-width: 480px) {
    .problems-bubble {
        padding: 50px 20px;
    }
    
    .arrow-transition {
        padding: 30px 0;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .problems-title {
        font-size: 1.3rem;
    }
    
    .problems-subtitle {
        font-size: 1.6rem;
    }
    
    .character-left img,
    .character-right img {
        width: 60px;
        max-width: 60px;
    }

    .arrow-icon {
        padding: 12px;
        width: 40px;
        height: 40px;
    }

    .arrow-icon i {
        font-size: 0.9rem;
        margin: -2px 0;
    }
    
    .solution h2.solution-title {
        margin-bottom: 55px !important;
        padding-bottom: 30px !important;
        line-height: 1.8;
    }
    
    .medical-brand::after {
        height: 3px;
        bottom: -3px;
    }
} 

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

/* Testimonials Slider */
.testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.testimonials-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card-new {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #28a745;
}

.profile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: visible;
    background: white;
}

.profile-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
}

.nurse-icon {
    background: transparent;
}

.lab-tech-icon {
    background: transparent;
}

.medical-clerk-icon {
    background: transparent;
}

.doctor-icon {
    background: transparent;
}

.surgeon-icon {
    background: transparent;
}

.profile-info {
    display: flex;
    gap: 10px;
}

.age, .gender {
    background-color: #e9ecef;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-title {
    color: #28a745;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.testimonial-main-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}



@media (max-width: 768px) {
    .testimonials-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .testimonial-card-new {
        padding: 25px 20px;
        min-height: 350px;
    }
    
    .testimonial-main-title {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .profile-image, .profile-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-gallery {
        padding: 0 10px;
        gap: 15px;
    }
    
    .testimonial-card-new {
        padding: 20px 15px;
        min-height: 320px;
    }
    
    .testimonial-main-title {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
} 

/* Coverage Area Section */
.coverage-area {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 60px 0;
}

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

.japan-map {
    display: inline-block;
    max-width: 700px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .coverage-area {
        padding: 40px 0;
    }
    
    .japan-map {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .coverage-area {
        padding: 30px 0;
    }
    
    .japan-map {
        max-width: 350px;
    }
}

/* FAQ CTA Section */
.faq-cta {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.faq-cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 150px;
}

.faq-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #333;
}

.faq-cta-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.faq-cta-text {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .faq-cta-btn {
        width: 100%;
        max-width: 300px;
    }
} 

/* Inquiry Popup Styles */
.inquiry-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.inquiry-popup.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.inquiry-popup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0d6efd, #198754, #0d6efd);
    border-radius: 20px;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

.popup-content {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f8f9fa;
    color: #dc3545;
    transform: scale(1.1);
}

.popup-image {
    margin-bottom: 15px;
}

.popup-gif {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.popup-text h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.popup-text p {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
    text-align: center;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white;
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.popup-btn-secondary {
    background: white;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.popup-btn-secondary:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
}

.popup-urgency {
    margin-top: 15px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.popup-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

.urgency-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(25, 135, 84, 0.7);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .inquiry-popup {
        width: 260px;
        bottom: 15px;
        right: 15px;
    }
    
    .popup-content {
        padding: 15px;
    }
    
    .popup-text h3 {
        font-size: 16px;
    }
    
    .popup-gif {
        width: 50px;
        height: 50px;
    }
    
    .popup-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .inquiry-popup {
        width: 240px;
        bottom: 10px;
        right: 10px;
    }
    
    .popup-content {
        padding: 12px;
    }
    
    .popup-text h3 {
        font-size: 15px;
    }
    
    .popup-gif {
        width: 45px;
        height: 45px;
    }
    
    .popup-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .urgency-text {
        font-size: 11px;
    }
}

/* Popup Show/Hide States */
.inquiry-popup.hidden {
    display: none;
}

.inquiry-popup.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
} 

/* FINAL POPUP STYLES - OVERRIDES ALL PREVIOUS DEFINITIONS */
#inquiry-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

#inquiry-popup.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

#inquiry-popup .popup-content {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
} 

/* Unpaid Overtime Section Styles */
.unpaid-overtime {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-title {
    text-align: center;
    margin-bottom: 50px;
}

.stats-title h3 {
    font-size: 1.8rem;
    color: #2c5282;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.stats-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4299e1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.circle-progress {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#4299e1 0deg, #4299e1 var(--progress-deg, 216deg), #e2e8f0 var(--progress-deg, 216deg), #e2e8f0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-inner {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.percentage {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5282;
}

.stat-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #4299e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
}

.service-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #4a5568;
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .circle-progress {
        width: 100px;
        height: 100px;
    }

    .circle-inner {
        width: 75px;
        height: 75px;
    }

    .percentage {
        font-size: 1rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 