/* Import Noto Sans JP from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Sans:wght@300;400;500;700&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Use Noto Sans JP as requested */
    font-family: "Noto Sans JP", "Noto Sans", sans-serif;
    line-height: 1.7; /* Slightly increased line-height */
    color: #333;
    background-color: #fff; /* White background for body */
    padding: 0;
}

/* Header Styles */
.header-top-bar {
/*    background-color: #005a9c; /* Blue top bar */
/*	background-color: #e94709; */
	background-color: #FD9C49;
    padding: 5px 20px;
    font-size: 0.85em;
    text-align: right; /* Align content to the right */
    color: #fff;
}

.header-top-content {
    max-width: 1100px; /* Limit width */
    margin: 0 auto;
}

.top-info {
    font-weight: bold;
}

.main-header {
    background: #fff;
    color: #333;
    padding: 15px 20px; /* Adjust padding */
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Add max-width and margin auto if header content should be constrained */
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .logo {
    /* Add styles for logo image replacement later */
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.main-header .logo h1 {
    margin: 0 0 2px 0; /* Adjust margin */
    font-size: 1.6em; /* Adjust size */
/*    color: #005a9c; */
/*	color:#e94709; */
	color:#FD9C49;
    font-weight: bold;
}

.main-header .logo h1 .organization {
    font-size: 0.7em; /* Make organization name smaller */
    display: block;
    margin-bottom: 2px;
}
.main-header .logo span { /* Subtitle */
    font-size: 0.8em;
    color: #555;
    display: block;
}


.main-nav {
    flex-grow: 1; /* Allow nav to take up space */
    text-align: center; /* Center nav items */
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex; /* Use inline-flex to center */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center items */
}

.main-nav ul li {
    display: inline;
    margin: 0 8px; /* Reduced spacing */
}

.main-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.95em; /* Slightly smaller font */
    font-weight: 500; /* Make menu items more visible */
    padding: 12px 8px; /* Adjusted padding */
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent; /* Thicker border for hover */
    display: block; /* Make link fill space */
    white-space: nowrap; /* Prevent line breaks in menu items */
    background-color: rgba(255, 255, 255, 0.8); /* Slight background for better visibility */
    border-radius: 4px;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus {
    color: #005a9c;
    text-decoration: none;
    border-bottom: 3px solid #005a9c;
    background-color: rgba(255, 255, 255, 1);
}

.header-contact {
    display: flex;
    align-items: center;
    font-size: 1.3em; /* Larger phone number */
    font-weight: bold;
/*    color: #005a9c; */
/*	color:#e94709; */
	color:#FD9C49;
    flex-shrink: 0; /* Prevent shrinking */
}

.header-contact .tel-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.header-contact a {
/*    color: #005a9c; */
/*	color:#e94709; */
	color: #FD9C49;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: #0077cc;
}


/* Main Content Styles */
main {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

section {
    margin-bottom: 0;
    padding: 50px 20px; /* Increased padding */
    border-bottom: 1px solid #eee;
}

/* Remove alternating background for now, can add later */
/* section:nth-child(even) {
    background-color: #f8f8f8;
} */

section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

section .content-wrapper {
    max-width: 1000px; /* Consistent max width */
    margin: 0 auto;
}

h2, h3, h4, h5 {
    color: #333; /* Darker headings */
    margin-bottom: 25px; /* Increased margin */
    font-weight: 500; /* Medium weight */
}

h2 {
    font-size: 2em; /* Larger section headings */
    text-align: center;
    margin-bottom: 40px; /* More space below main headings */
    color: #005a9c; /* Keep main headings blue */
	color: #FD6D0D;
    position: relative;
    padding-bottom: 10px;
}
/* Add decorative element below h2 like reference */
h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #005a9c;
	background-color: #FD6D0D;
    margin: 10px auto 0;
}


h3 { 
    font-size: 1.5em; 
    color: #FD6D0D;
}

h4 {
    font-size: 1.3em;
    color: #FD6D0D;
    margin-bottom: 15px;
}

h5 {
    font-size: 1.2em;
    color: #005a9c;
    margin-bottom: 12px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
/*    background-color: #005a9c; */
	background-color: #FD9C49;
    color: #fff;
/*    border: 2px solid #005a9c; */
	border: 2px solid #FD9C49;
}

.btn-primary:hover {
    background-color: #0077cc;
    border-color: #0077cc;
}

/* Hero Section Styles */
#hero {
    padding: 0; /* Remove padding, rely on inner content or background */
    /* Fix for hero image display */
    max-width: 1100px;
    margin: 0 auto;
    background-image: url('../images/受付.jpg'); /* Use the reception image */
    background-size: cover;
    background-position: center top; /* Position from top to avoid cutting at neck */
    min-height: 400px; /* Example height */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    text-align: center;
    color: #fff; /* White text for over image */
    border-bottom: none; /* Remove border for hero */
    position: relative; /* For potential overlay */
}
/* Overlay for text readability - increased opacity */
#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.45); /* Increased from 0.3 to 0.45 */
    z-index: 1;
}

#hero .hero-content {
    position: relative; /* Ensure content is above overlay */
    z-index: 2;
    max-width: 800px;
    padding: 25px;
    /* background-color: rgba(0, 0, 0, 0.3); Semi-transparent background */
    border-radius: 8px;
}

#hero h2, #hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow for better visibility */
}

#hero h2 {
    color: #fff; /* White heading */
    font-size: 2.5em; /* Larger hero heading */
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
#hero h2::after { /* Remove default h2 underline for hero */
    display: none;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#hero .hero-buttons {
    margin-top: 30px;
}

/* Seasonal Info Section */
.highlight-section {
    background-color: #f8f8f8;
    padding: 30px 20px;
}

.seasonal-box {
    background-color: #fff;
    border: 2px solid #8cc63f;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seasonal-box h3 {
    color: #8cc63f;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.seasonal-box ul {
    list-style-position: inside;
    margin: 15px 0;
    text-align: left;
    padding-left: 20px;
}

.highlight-text {
    font-weight: bold;
    color: #e74c3c;
    margin-top: 15px;
    font-size: 1.1em;
}

/* Medical Service Section */
#medical-service .service-box {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

#medical-service .service-image {
    flex: 0 0 150px;
}

#medical-service .service-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#medical-service .service-content {
    flex: 1;
}

#medical-service .service-box h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    #medical-service .service-box {
        flex-direction: column;
    }
    
    #medical-service .service-image {
        margin-bottom: 15px;
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Greeting Section Styles */

#greeting .photo {
	text-align: center;
	margin-bottom: 20px;
}

#greeting .intro-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

#greeting .intro-images {
    display: flex;
    justify-content: space-around; /* Or space-between */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Add space between images */
    margin-top: 30px;
}

#greeting .profile {
	font-size: 1.5rem;
}




/* Introduction Section Styles */
#introduction .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

#introduction .intro-images {
    display: flex;
    justify-content: space-around; /* Or space-between */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Add space between images */
    margin-top: 30px;
}

/* Medical Staff Section Styles */
#medical-staff {
    background-color: #f8f8f8;
}

#medical-staff .staff-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.doctor-schedule-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-collapse: collapse;
    border: 2px solid #8cc63f; /* Green border like the reference */
}

.doctor-schedule-table th, 
.doctor-schedule-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #8cc63f;
}

.doctor-schedule-table th {
    background-color: #c5e0b4; /* Light green background */
    color: #333;
    font-weight: 500;
}

.doctor-schedule-table .day-column {
    width: 15%;
    background-color: #c5e0b4;
    font-weight: 500;
}

.doctor-schedule-table .closed {
    color: #e74c3c; /* Red text for closed days */
    font-weight: bold;
}

.doctor-schedule-table .director {
    font-weight: bold;
}

.doctor-info {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.doctor-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.doctor-card h4 {
    color: #005a9c;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.doctor-card p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .doctor-schedule-table {
        font-size: 0.9em;
    }
    
    .doctor-schedule-table th, 
    .doctor-schedule-table td {
        padding: 8px 5px;
    }
}

#introduction .intro-images figure {
    text-align: center;
    max-width: 30%; /* Adjust width for 3 images per row */
    flex-basis: 250px; /* Minimum base size */
    flex-grow: 1;
}

#introduction .intro-images img {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    border-radius: 5px;
}

#introduction .intro-images figcaption {
    font-size: 0.9em;
    color: #555;
    font-weight: bold;
}

/* News Section Styles */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px dotted #ddd;
}

.news-date {
    width: 100px;
/*    color: #005a9c; */
	color: #FD6D0D;
    font-weight: bold;
}

.news-title {
    flex-grow: 1;
    font-weight: bold;
}

.news-content {
    width: 100%;
    margin-top: 10px;
    padding-left: 100px;
    line-height: 1.6;
}

/* Golden Week Schedule Table Styles */
.gw-table-container {
    margin: 15px 0;
    overflow-x: auto; /* Add scroll for small screens */
}

.gw-schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9em; /* Slightly smaller font for table */
    border: 1px solid #ddd; /* Add border around table */
    background-color: #fff; /* Ensure white background */
}

.gw-schedule-table th,
.gw-schedule-table td {
    padding: 8px 5px; /* Adjust padding */
    border: 1px solid #ddd;
}

.gw-schedule-table th {
    background-color: #eaf4fc; /* Light blue background for header */
    font-weight: bold;
    white-space: nowrap; /* Prevent date wrapping */
}

.gw-schedule-table td {
    /* background-color: #fff; */ /* Removed as table has background */
}

.gw-schedule-table .gw-closed {
    color: #e74c3c; /* Red color for closed days */
    font-weight: bold;
}

/* Style for the first news item (院長交代のお知らせ) */
.news-item:first-child {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #FD6D0D;
}

.news-item:first-child .news-title {
/*    color: #005a9c; */
	color: #FD6D0D;
}

/* Hours Section Styles */
.blue-section {
    background-color: #eaf4fc;
}

.orange-section {
	background-color: #fef5ed;
}

.hours-table-container {
    max-width: 800px;
    margin: 0 auto 20px;
    overflow-x: auto;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.hours-table th {
/*    background-color: #005a9c; */
	background-color: #FD9C49;
    color: #fff;
    padding: 10px;
    font-weight: normal;
}

.hours-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table .fas.fa-check {
    color: #005a9c;
	color: #FD6D0D;
}

.hours-notes {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 0;
}

.note {
    margin-bottom: 5px;
}

/* Access Section Styles Adjustments */
.access-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.address-info {
    flex: 1;
    min-width: 300px;
}

.map-building-container {
    flex: 2;
    min-width: 300px;
}

#access .address-info h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#access .address-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.address-info {
    flex: 1;
    min-width: 400px; /* Increased from 300px */
}

#access .directions {
    margin-top: 30px;
    width: 100%; /* Ensure full width */
}

#access .directions h4 {
/*    color: #005a9c; */
	color: #FD6D0D;
    margin-bottom: 15px;
    font-size: 1.2em;
}

#access .directions ul {
    list-style: none;
    margin-bottom: 15px;
    width: 100%; /* Ensure full width */
}

#access .directions ul li {
    margin-bottom: 12px; /* Increase spacing between items */
    padding-right: 10px; /* Add right padding */
    width: 100%; /* Ensure full width */
    display: flex; /* Use flexbox for layout */
    align-items: flex-start; /* Align items to the top */
}

#access .directions ul li i {
    color: #005a9c;
    margin-right: 8px;
    width: 20px; /* Fixed width for icons */
    text-align: center;
    display: inline-block;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

#access .directions ul li span {
    flex-grow: 1; /* Allow text to take remaining space */
}

#access .map-container {
    margin-bottom: 20px; /* Add space around map */
    /* Optional: Make map responsive */
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#access .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Ensure no border from iframe itself */
}

#access .building-photo {
    margin-top: 20px;
    text-align: center; /* Center the building photo */
}

#access .building-photo img {
    max-width: 100%; /* Limit building photo size */
    height: auto;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    border-radius: 5px;
}

#access .building-photo figcaption {
    font-size: 0.9em;
    color: #555;
    font-weight: bold;
}


/* Footer Styles */
.site-footer {
    margin-top: 0;
    padding: 40px 20px 20px 20px; /* Adjust padding */
    border-top: 1px solid #ddd;
    color: #555;
    font-size: 0.9em;
/*    background-color: #eaf4fc; */
	background-color: #fef5ed;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 30px auto; /* Add bottom margin */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; /* Add gap between columns */
    text-align: left; /* Align text left in columns */
}

.footer-column {
    flex: 1; /* Allow columns to grow */
    min-width: 250px;
}

.footer-column.clinic-access { /* Make access column potentially smaller */
    flex-basis: 200px;
    flex-grow: 0;
    text-align: center;
}

.footer-column h3 {
    font-size: 1.1em;
    color: #FD6D0D;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.footer-column p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.mini-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.mini-hours-table th, .mini-hours-table td {
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.mini-hours-table th {
    font-weight: bold;
    color: #FD6D0D;
}

.button-like { /* Style for access button */
    display: inline-block;
    padding: 10px 25px;
    background-color: #005a9c; /* Match site blue */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #005a9c;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: bold;
    margin-top: 10px;
}

.button-like:hover {
    background-color: #0077cc;
    border-color: #0077cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #d0e0f0; /* Lighter border */
    font-size: 0.85em;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* Utility class for phone numbers if needed */
.phone-number {
    font-weight: bold;
    color: #005a9c;
    font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-nav ul li {
        margin: 0 5px; /* Further reduce spacing on medium screens */
    }
    
    .main-nav ul li a {
        font-size: 0.9em; /* Smaller font on medium screens */
        padding: 10px 6px; /* Smaller padding */
    }
}

/* Self-pay Page Styles */
.page-header {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    color: #333;
    font-size: 2.5em;
    margin: 0;
    font-weight: 500;
}

.breadcrumb {
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

.breadcrumb a {
    color: #005a9c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8em;
    color: #999;
}

.content-section {
    padding: 40px 20px;
    background-color: #fff;
}

/* サービスナビゲーション */
.service-navigation {
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #005a9c;
}

.service-name {
    font-size: 1em;
    font-weight: 500;
    color: #005a9c;
}

.service-card i {
    color: #005a9c;
    font-size: 1.2em;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
}

/* サービス項目 */
.service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.service-item h3 {
/*    color: #005a9c; */
	color: #FD6D0D;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fef5ed;
}

.service-content {
    line-height: 1.8;
}

.service-content p {
    margin-bottom: 15px;
}

/* 治療オプション */
.treatment-options {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.treatment-options h5 {
    color: #FD6D0D;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.treatment-options h6 {
    font-size: 1.1em;
    margin: 15px 0 5px;
}

/* 料金表 */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.fee-table th, .fee-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.fee-table th {
    background-color: #fef5ed;
    color: #333;
    font-weight: 500;
    width: 70%;
}

.fee-table td {
    font-weight: bold;
/*    color: #FD9C49; */
	color: #3A3A3A;
}

.fee-table tr:hover {
    background-color: #f5f5f5;
}

/* 副作用リスト */
.side-effect-list {
    list-style-type: none;
    padding-left: 0;
    margin: 15px 0;
}

.side-effect-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.side-effect-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #005a9c;
    font-weight: bold;
}

/* おすすめボックス */
.recommendation-box {
    background-color: #eaf4fc;
    border-left: 4px solid #005a9c;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.recommendation-box h5 {
    color: #005a9c;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.recommendation-box ul {
    list-style-type: none;
    padding-left: 0;
}

.recommendation-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.recommendation-box ul li::before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #005a9c;
    font-weight: bold;
}

/* 装飾要素 */
.highlight {
    background-color: #fffde7;
    padding: 2px 0;
    border-bottom: 1px dotted #ffd54f;
}

.highlight-red {
    color: #e53935;
    font-weight: bold;
}

.caution {
    color: #d32f2f;
    font-size: 0.95em;
    line-height: 1.6;
}

.note {
    font-size: 0.9em;
    color: #555;
    font-style: italic;
}

.new-info {
    position: relative;
    padding-left: 45px;
    color: #e53935;
    font-weight: bold;
}

.new-info::before {
    content: "NEW";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.7em;
    background-color: #e53935;
    color: white;
    padding: 2px 4px;
    border-radius: 3px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-item {
        padding: 20px;
    }
    
    .fee-table th, .fee-table td {
        padding: 10px;
    }
    
    .link-list {
        justify-content: flex-start;
    }
    
    .link-list a {
        font-size: 0.85em;
        padding: 6px 12px;
    }
}

.preparation-message {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin: 30px auto;
    max-width: 600px;
}

.preparation-message p {
    font-size: 1.5em;
    color: #005a9c;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #005a9c;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .header-top-bar {
        padding-right: 50px; /* Add space for the menu button */
    }
    
    .main-header {
        flex-direction: column;
        padding: 10px;
    }
    
    .main-header .logo {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        position: fixed; /* Change from absolute to fixed */
        top: 15px;
        right: 15px;
        background-color: rgba(255, 255, 255, 0.9); /* Add semi-transparent background */
        border-radius: 4px;
        padding: 8px 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav {
        margin: 10px 0;
        width: 100%;
        display: none; /* Hide by default */
    }
    
    .main-nav.active {
        display: block; /* Show when active */
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px;
        width: 100%;
    }
    
    .header-contact {
        margin-top: 10px;
    }
    
    #hero h2 {
        font-size: 1.8em;
    }
    
    #hero p {
        font-size: 1em;
    }
    
    .intro-images figure {
        max-width: 100%;
    }
    
    .access-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
}

/* health-checkup.html の視認性向上のためのカスタムスタイル */
#health-checkup .service-content h4 {
    margin-top: 30px; /* 小見出しの上のスペースを増やす */
    margin-bottom: 10px;
}

#health-checkup .service-content p {
    margin-bottom: 1em; /* 段落の間隔を統一 */
}

#health-checkup .service-content .checkup-notes-list {
    list-style: none;
    padding-left: 1.5em; /* リストのインデント */
    margin-top: 15px;
    margin-bottom: 25px;
}

#health-checkup .service-content .checkup-notes-list li {
    position: relative;
    padding-left: 1.4em; /* ビュレット用のスペース */
    margin-bottom: 0.8em; /* リスト項目間のスペース */
}

#health-checkup .service-content .checkup-notes-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #005a9c;
    font-size: 1.2em;
}

/* お知らせ一覧へボタンのスタイル */
.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 40px;
    background-color: #fff;
/*    color: #005a9c; */
	color: #FD6D0D;
    border: 2px solid #FD6D0D;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-view-more:hover {
    background-color: #005a9c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Vaccination Page Styles */
.vaccine-table,
.certificate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden; /* To make border-radius work on table */
}

.vaccine-table th,
.certificate-table th,
.vaccine-table td,
.certificate-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.vaccine-table th,
.certificate-table th {
    background-color: #FD9C49;
    color: #fff;
    font-weight: 500;
}

.vaccine-table td:first-child,
.certificate-table td:first-child {
    width: 70%;
    font-weight: 500;
}

.vaccine-table td:last-child,
.certificate-table td:last-child {
    text-align: right;
    font-weight: bold;
/*    color: #FD6D0D; */
	color: #3A3A3A;
    white-space: nowrap;
}

.vaccine-table tr:last-child td,
.certificate-table tr:last-child td {
    border-bottom: none;
}

.vaccine-table tr:hover,
.certificate-table tr:hover {
    background-color: #f8f8f8;
}

.vaccine-section, .certificate-section {
    margin-bottom: 40px;
}

.vaccine-section h3, .certificate-section h3 {
    font-size: 1.8em;
    color: #FD6D0D;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fef5ed;
}
