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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Color Variables */
:root {
    --primary-color: #4a90a4;
    --secondary-color: #e8f4f8;
    --accent-color: #d4a574;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #4a7c59;
    --warm-bg: #fff4e6;
    --light-blue: #f0f8ff;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100px;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-image {
    height: auto;
    width: auto;
    max-height: 80px;
    max-width: 400px;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.logo-image:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #3a7a8a;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-fullscreen {
    background: url('images/top-page.jpg') center center/cover no-repeat;
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 2rem 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #3a7a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 164, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* White text styles for fullscreen hero */
.hero-subtitle-white {
    display: block;
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-main-white {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description-white {
    font-size: 1.2rem;
    color: white;
    margin: 2rem 0;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-main-message {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 4rem 0;
    text-align: center;
}

.hero-buttons-white {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-white {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary-white:hover {
    background: #3a7a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-secondary-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}


.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Concept Section */
.concept {
    padding: 6rem 0;
    background: var(--warm-bg);
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.concept-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.concept-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.concept-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Greeting Section */
.greeting {
    padding: 6rem 0;
    background: white;
}

.greeting-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.greeting-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.greeting-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.greeting-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-blue);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--warm-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-table th,
.info-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    width: 30%;
}

.info-table td {
    color: var(--text-dark);
}

.info-table td a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-table td a:hover {
    text-decoration: underline;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-method strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

.fax-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.contact-method p a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-method p a:hover {
    text-decoration: underline;
}

.phone-hours {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.contact-form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-container {
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-container {
        padding: 1rem 1rem;
        min-height: 80px;
    }
    
    .logo-image {
        height: auto;
        max-height: 60px;
        max-width: 300px;
    }
    
    .hero-main-message {
        font-size: 1.4rem;
        margin: 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-main {
        font-size: 2rem;
    }
    
    .hero-main-white {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-white {
        font-size: 1rem;
    }
    
    .hero-description-white {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .hero-buttons-white {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn-primary-white,
    .btn-secondary-white {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    
    .concept-content,
    .greeting-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-section {
        margin-top: 3rem;
    }
    
    .greeting-content {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        height: 180px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav ul {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .news-date,
    .news-category {
        margin: 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Placeholder Styles */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.placeholder-content {
    text-align: center;
    color: var(--primary-color);
}

.placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.icon-placeholder .placeholder-icon {
    font-size: 2rem;
    margin: 0;
}

/* Specific placeholder heights */
.concept-image .image-placeholder {
    height: 350px;
}

.greeting-image .image-placeholder {
    height: 300px;
    border-radius: 50%;
}

.about-image .image-placeholder {
    height: 250px;
}

.hero-image .image-placeholder {
    height: 400px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* News Page Styles */
.news-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-date {
    margin-bottom: 20px;
}

.news-date time {
    background: #2c5aa0;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-details {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.news-details p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

/* Heavy Visit Care Page Styles */
.heavy-care-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 30px;
    border-bottom: 3px solid #2c5aa0;
    padding-bottom: 10px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c5aa0;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.feature-description {
    line-height: 1.7;
    color: #666;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "✓";
    color: #2c5aa0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-list li:last-child {
    border-bottom: none;
}

.eligibility-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.eligibility-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.eligibility-list ul {
    margin-top: 10px;
    margin-left: 20px;
}

.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-section .section-heading {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2c5aa0;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #2c5aa0;
    font-weight: 600;
}

/* Additional responsive styles for new pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .news-item {
        padding: 30px 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Recruitment Page Styles */
.recruitment-content {
    padding: 80px 0;
}

.job-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.job-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #2c5aa0;
}

.job-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 30px;
    text-align: center;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 5px;
}

.job-item p {
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 3px solid #2c5aa0;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.benefit-description {
    line-height: 1.7;
    color: #666;
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.contact-info p {
    margin: 8px 0;
    color: #333;
    font-weight: 600;
}

.cta-section .contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive styles for recruitment page */
@media (max-width: 768px) {
    .job-positions {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* LINE Contact Styles */
.line-contact {
    background: #00B900;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
}

.line-contact:hover {
    background: #009900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
    color: white;
}

/* 吹き出し絵文字を削除 */

/* Fixed LINE Icon */
.line-fixed-icon {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #00B900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    background-image: url('images/Mobile PNG Images _ SimilarPNG.jfif');
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center;
}

.line-fixed-icon:hover {
    background: #009900 url('images/Mobile PNG Images _ SimilarPNG.jfif') center/60px 60px no-repeat;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 画像を使用するため::beforeを無効化 */
.line-fixed-icon::before {
    content: none;
}

@media (max-width: 768px) {
    .line-fixed-icon {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
        background-size: 50px 50px;
    }
    
    .line-fixed-icon::before {
        content: none;
    }
    
    /* ニュース記事のモバイル対応 */
    .news-item.with-image {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    
    .news-item.with-image .news-thumbnail {
        width: 100% !important;
        height: 200px !important;
    }
    
    .news-item.with-image .news-content {
        padding: 0 !important;
    }
    
    .news-item.without-image {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    
    .news-item.without-image .news-no-image {
        width: 100% !important;
        height: 150px !important;
    }
    
    .news-item.without-image .news-content {
        padding: 0 !important;
    }
}

/* Recruitment Page Enhanced Styles */
.attractions-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.attraction-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.attraction-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #3d6bb3 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.attraction-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.attraction-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.attraction-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-item.with-image {
    display: flex;
    flex-direction: row;
    padding: 30px;
    gap: 30px;
    align-items: flex-start;
}

.news-item.with-image .news-thumbnail {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-item.with-image .news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item.with-image .news-thumbnail img:hover {
    transform: scale(1.05);
}

.news-item.with-image .news-content {
    flex: 1;
    padding: 0;
}

/* ニュース記事内の画像サイズ制限 */
.news-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ニュース記事内の画像を中央寄せ */
.news-content-text p img {
    display: block;
    margin: 20px auto;
}

/* 画像なしニュース記事のスタイル */
.news-item.without-image {
    display: flex;
    flex-direction: row;
    padding: 30px;
    gap: 30px;
    align-items: flex-start;
}

.news-item.without-image .news-no-image {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    color: #6c757d;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-item.without-image .news-content {
    flex: 1;
    padding: 0;
}

.attraction-text p {
    margin-bottom: 15px;
}

.service-rules {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #2c5aa0;
}

.service-rules li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.manager-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.manager-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.manager-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2c5aa0;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.manager-text h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.manager-text p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive styles for recruitment enhancements */
@media (max-width: 768px) {
    .attraction-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .attraction-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .attraction-header {
        padding: 20px;
        text-align: center;
    }
    
    .manager-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .manager-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

/* Heavy Visit Care Enhanced Styles */
.heavy-care-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.overview-image, .mission-image {
    text-align: center;
}

.demo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-visual {
    margin-top: 40px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 30px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.general-care {
    border-top: 5px solid #ff6b6b;
}

.heavy-care {
    border-top: 5px solid #2c5aa0;
}

.card-header {
    padding: 30px 25px 20px;
    text-align: center;
    position: relative;
}

.general-care .card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
}

.heavy-care .card-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #3d6bb3 100%);
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.card-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.card-content {
    padding: 25px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid transparent;
}

.general-care .comparison-item {
    border-left-color: #ff6b6b;
}

.heavy-care .comparison-item {
    border-left-color: #2c5aa0;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.item-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    margin-right: 15px;
    font-size: 0.9rem;
}

.item-value {
    color: #555;
    line-height: 1.6;
    flex: 1;
}

/* Our Services Section */
.our-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.service-feature {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: flex-start;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}


.service-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.cost-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.cost-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.cost-limits {
    margin-top: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cost-limits h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.limit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.limit-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.limit-card h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
}

.note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.model-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.case-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.case-card h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 600;
}

.case-prices {
    margin-top: 20px;
}

.price-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    font-weight: 600;
    color: #2c5aa0;
}

.migration-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sign-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #ff6b6b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sign-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.sign-item h3 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
}

.migration-message {
    background: #fff3cd;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 5px solid #ffc107;
}

.migration-message p {
    margin: 0;
    font-size: 1.1rem;
    color: #856404;
    text-align: center;
    line-height: 1.7;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.consultation-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
}

.consultation-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.consultation-item h3 {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive styles for enhanced content */
@media (max-width: 768px) {
    .overview-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-feature {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .service-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    
    .cost-comparison {
        grid-template-columns: 1fr;
    }
    
    .limit-cards {
        grid-template-columns: 1fr;
    }
    
    .migration-signs {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        padding: 25px 20px 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }
    
    .item-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* reCAPTCHA Styling */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}
