/* ========================================
   グローバル設定
   ======================================== */
:root {
    --primary-color: #2d8659;
    --primary-dark: #1a5838;
    --primary-light: #48bb78;
    --secondary-color: #68d391;
    --accent-color: #38a169;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-gray: #718096;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1100px;
    --radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-content {
    display: flex;
    flex-direction: column;
}

.header-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.header-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.header-link:hover .logo {
    color: var(--secondary-color);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: var(--transition);
    color: white;
    letter-spacing: 0.5px;
}

.director {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    opacity: 0.95;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: var(--radius);
}

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

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.main-nav a:hover {
    opacity: 1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    color: var(--text-dark);
    padding: 9rem 0 8rem;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.95);
    transition: opacity 1.5s ease-in-out;
}

.hero::before {
    background-image: url('S__102866950.jpg');
    z-index: 1;
    animation: fadeInOut 10s infinite;
}

.hero::after {
    background-image: url('S__102866951.jpg');
    z-index: 1;
    animation: fadeInOut 10s infinite 5s;
}

@keyframes fadeInOut {
    0%, 40% {
        opacity: 1;
    }
    50%, 90% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.25;
    text-shadow: none;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    opacity: 0.85;
    text-shadow: none;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* ========================================
   ボタン
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.35);
}

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

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-number {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   お知らせ
   ======================================== */
.notice {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 3rem 0;
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.notice-content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.notice-label {
    background: #dc2626;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
}

.notice-main-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

/* 診療時間比較表 */
.schedule-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.schedule-box {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #d1fae5;
}

.schedule-box.current {
    border-color: #93c5fd;
}

.schedule-box.new {
    border-color: #fca5a5;
    background: #fffbeb;
}

.schedule-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.hours-table-compact {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hours-table-compact th,
.hours-table-compact td {
    padding: 0.6rem 0.3rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.hours-table-compact thead {
    background: var(--primary-color);
}

.hours-table-compact th {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.hours-table-compact .time-label {
    font-weight: 600;
    font-size: 0.85rem;
    background: #f3f4f6;
}

.hours-table-compact .open {
    color: #ff69b4;
    font-weight: 700;
}

.hours-table-compact .closed {
    color: #cbd5e0;
}

.hours-table-compact .reservation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
}

.schedule-note {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    text-align: center;
}

.schedule-note-important {
    font-size: 0.9rem;
    color: #d97706;
    font-weight: 600;
    margin: 0.5rem 0;
    text-align: center;
    line-height: 1.6;
}

/* ========================================
   セクション共通
   ======================================== */
.section {
    padding: 4rem 0;
    background: #ffffff;
}

.section:nth-child(odd) {
    background: var(--bg-light);
}

.section:nth-child(even) {
    background: #ffffff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* ========================================
   院の紹介
   ======================================== */
.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--border-color);
}

.about-description {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.about-description p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-top: 2rem !important;
}

/* 施設写真 */
.facility-images {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-image-item {
    text-align: center;
}

.facility-image-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.facility-image-item img:hover {
    opacity: 0.9;
}

.image-caption {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   診療内容
   ======================================== */
.services {
    background: #ffffff;
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #ffffff;
    transition: var(--transition);
    user-select: none;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, #dcfce7 100%);
    border-bottom: 1px solid var(--border-color);
}

.accordion-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
    line-height: 1;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.accordion-content p {
    padding: 0 1.5rem;
}

.accordion-content p:first-child {
    padding-top: 1.5rem;
}

.accordion-content p:last-child {
    padding-bottom: 1.5rem;
}

.service-icon {
    font-size: 2rem;
    display: inline-block;
    flex-shrink: 0;
}

.service-card p {
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card p strong {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card ul {
    margin-left: 1.5rem;
    color: var(--text-dark);
    line-height: 2;
}

.service-card li {
    margin-bottom: 0.75rem;
}

/* ========================================
   診療時間
   ======================================== */
.hours-table-wrapper {
    max-width: var(--max-width);
    margin: 0 auto 1.5rem;
    overflow-x: auto;
}

.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45, 134, 89, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.hours-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.hours-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
}

.hours-table th:first-child {
    text-align: center;
    font-weight: 700;
}

.hours-table td {
    padding: 1.75rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(45, 134, 89, 0.08);
    font-size: 1.3rem;
}

.hours-table td.time-label {
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.15rem;
    background: #f9fafb;
}

.hours-table .open {
    color: #ff69b4;
    font-weight: 700;
    font-size: 1.6rem;
}

.hours-table .closed {
    color: #cbd5e0;
    font-weight: 400;
    font-size: 1.4rem;
}

.hours-table .reservation {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.hours-table tbody tr:hover {
    background: #fff5f7;
}

.hours-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
}

.hours-note-highlight {
    color: #d97706;
    font-weight: 600;
}

/* ========================================
   アクセス
   ======================================== */
.access {
    background: white;
}

/* アクセスメインボックス */
.access-main-box {
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* アクセス情報カード */
.access-info-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.access-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.access-card-title {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.access-info-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-color);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(45, 134, 89, 0.2));
}

.info-text {
    flex: 1;
}

.info-label-new {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value-new {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

.phone-link-access {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: 0.5px;
}

.phone-link-access:hover {
    color: var(--accent-color);
    transform: scale(1.08);
}

.access-highlight {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bg-light) 0%, #dcfce7 100%);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    display: inline-block;
}

/* 駐車場カード */
.access-parking-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.access-parking-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.parking-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.parking-image-new {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.parking-image-new:hover {
    opacity: 0.95;
}

.parking-image-new img {
    width: 100%;
    height: auto;
    display: block;
}

.parking-info-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.parking-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.parking-feature:hover {
    background: #f0fdf4;
}

.parking-check {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.parking-feature p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.parking-reservation {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: none;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
}

.parking-reservation p {
    font-size: 1.05rem;
    color: #92400e;
    font-weight: 700;
    margin: 0;
}

/* 地図ボックス */
.access-map-box {
    max-width: var(--max-width);
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.map-title {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.map-wrapper {
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

/* ========================================
   スタッフ
   ======================================== */
.staff {
    background: var(--bg-light);
}

.staff-info {
    max-width: var(--max-width);
    margin: 0 auto;
}

.staff-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.staff-card h3 {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.staff-title,
.staff-qualification {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   求人情報
   ======================================== */
.recruit {
    background: #fafbfc;
}

.recruit-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* メインメッセージ */
.recruit-message {
    background: white;
    padding: 3.5rem 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(45, 134, 89, 0.1);
    position: relative;
    transition: var(--transition);
}

.recruit-message:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.recruit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.recruit-main-text {
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 2;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
}

.recruit-sub-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: inline-block;
}

/* お問い合わせボックス */
.recruit-contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: white;
}

.recruit-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.recruit-contact-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.recruit-tel-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.recruit-tel-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--bg-light);
}

.recruit-tel-button svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   お問い合わせ
   ======================================== */
.contact {
    background: #fafbfc;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(45, 134, 89, 0.02), transparent);
    pointer-events: none;
}

.contact-content {
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.9;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    justify-content: center;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-hours h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-info p,
.footer-hours p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding-top: 1rem;
    }

    .main-nav li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
    }

    .hero {
        padding: 5rem 0;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-main-title {
        font-size: 1.5rem;
    }

    .about-description {
        padding: 2rem 1.5rem;
    }

    .about-description p {
        font-size: 1.05rem;
    }

    .about-highlight {
        font-size: 1.15rem !important;
        padding: 1.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .access-main-box {
        grid-template-columns: 1fr;
    }

    .access-info-content {
        padding: 2rem 1.5rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .info-label-new {
        font-size: 0.85rem;
    }

    .info-value-new {
        font-size: 1.05rem;
    }

    .phone-link-access {
        font-size: 1.2rem;
    }

    .access-highlight {
        font-size: 1.1rem;
    }

    .parking-card-content {
        padding: 2rem 1.5rem;
    }

    .parking-feature p {
        font-size: 1.05rem;
    }

    .parking-reservation p {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .hours-table th,
    .hours-table td {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }

    .hours-table .open {
        font-size: 1.2rem;
    }

    .hours-table .reservation {
        font-size: 0.85rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .schedule-comparison {
        grid-template-columns: 1fr;
    }

    .hours-table-compact th,
    .hours-table-compact td {
        padding: 0.5rem 0.2rem;
        font-size: 0.8rem;
    }

    .schedule-note,
    .schedule-note-important {
        font-size: 0.85rem;
    }

    .facility-images {
        grid-template-columns: 1fr;
    }

    .recruit-message {
        padding: 2rem 1.5rem;
    }

    .recruit-main-text {
        font-size: 1.2rem;
    }

    .recruit-sub-text {
        font-size: 1.05rem;
    }

    .recruit-contact-box {
        padding: 2rem 1.5rem;
    }

    .recruit-tel-button {
        font-size: 1.3rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-text {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .hours-table th,
    .hours-table td {
        padding: 0.75rem 0.25rem;
        font-size: 0.85rem;
    }

    .hours-table .reservation {
        font-size: 0.75rem;
    }

    .hours-note {
        font-size: 0.9rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .service-card p strong {
        font-size: 1rem;
    }

    .access-card-title,
    .map-title {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .access-info-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .info-icon {
        font-size: 1.3rem;
    }

    .info-label-new {
        font-size: 0.8rem;
    }

    .info-value-new {
        font-size: 1rem;
    }

    .phone-link-access {
        font-size: 1.15rem;
    }

    .access-highlight {
        font-size: 1.05rem;
    }

    .parking-card-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .parking-check {
        font-size: 1.3rem;
    }

    .parking-feature p {
        font-size: 1rem;
    }

    .parking-reservation p {
        font-size: 0.95rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* ========================================
   印刷用スタイル
   ======================================== */
@media print {
    .header,
    .hero,
    .notice,
    .mobile-menu-toggle,
    .btn,
    .footer {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
    }
}
