* {
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 400;
}

.content-shell {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 768px) {
    .content-shell {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.nav-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    background: linear-gradient(90deg, #00a6cc, #00a8ca);
    border-radius: 9999px;
}

.medical-blue {
    background: linear-gradient(135deg, #00a6cc 0%, #007a96 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

/* アクセシビリティ: フォーカス可視化 */
a:focus,
button:focus {
    outline: 2px solid #00a6cc;
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #00a6cc;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0, 166, 204, 0.2);
    border-radius: 4px;
}

/* ナビゲーションリンクのフォーカス */
nav a:focus-visible {
    outline: 2px solid #00a6cc;
    outline-offset: 2px;
    background-color: #f0f9ff;
    border-radius: 4px;
}

.hero-bg,
.hero-photo {
    background: linear-gradient(115deg, rgba(121, 121, 121, 0.5), rgba(121, 121, 121, 0.5)), url('images/IMG_0753_hero_bg.png');
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 -20px 50px rgba(0, 0, 0, 0.08);
}

.page-hero {
    background: linear-gradient(160deg, rgba(121, 121, 121, 0.5), rgba(121, 121, 121, 0.5)), url('images/IMG_0753_hero_bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.85rem;
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}

.info-card {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.news-card {
    border: 1px solid #e5e7eb;
    border-left: 5px solid #00a6cc;
    transition: transform 0.2s cubic-bezier(.83,0,.17,1), box-shadow 0.2s cubic-bezier(.83,0,.17,1);
    background: white;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.news-list-item:first-child {
    padding-top: 0;
}

.news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-list-item:hover {
    background-color: #f9fafb;
    transform: translateX(4px);
}

.news-list-item:focus {
    outline: 2px solid #00a6cc;
    outline-offset: -2px;
    background-color: #f0f9ff;
}

.news-list-item p {
    font-weight: 500;
    color: #1f2937;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.news-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    background: #e6f7fc;
    color: #00a6cc;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(.83,0,.17,1);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.section-padding {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }
}

.section-title {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.section-label {
    font-size: 14px;
    font-weight: 400;
    color: #00a6cc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.item-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .item-title {
        font-size: 18px;
    }
}

.hero-text {
    font-size: 34px;
    color: #fff;
    text-shadow: 0px 0px 30px #000;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.news-item {
    border-left: 4px solid #00a6cc;
    padding-left: 16px;
    margin-bottom: 16px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: #00a6cc;
    box-shadow: 0 0 0 4px rgba(0, 166, 204, 0.12);
}

.image-frame {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

a.news-link {
    text-decoration: none;
    color: inherit;
}

a.news-link:hover h3 {
    color: #1d4ed8;
}

.department-card {
    background: white;
    border-radius: 8px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.department-card h3 {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

@media (max-width: 768px) {
    .department-card h3 {
        font-size: 18px;
    }
}

.department-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

.department-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-notice {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    color: #92400E;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    line-height: 1.4;
}

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

.schedule-table th {
    background: #e6f7fc;
    color: #00a6cc;
    font-weight: 700;
}

.schedule-table td.is-closed {
    background: #fef2f2;
    color: #b91c1c;
    font-weight: 700;
}

.schedule-caption {
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 8px;
}

/* カスタムカラークラス（元サイト準拠） */
.bg-primary {
    background-color: #00a6cc !important;
}

.bg-primary-hover:hover {
    background-color: #007a96 !important;
}

.text-primary {
    color: #00a6cc !important;
}

.border-primary {
    border-color: #00a6cc !important;
}

.btn-primary {
    background-color: #00a8ca;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #007a96;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* スライダー */
.slider-container {
    position: relative;
    min-height: 300px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-out;
    pointer-events: none;
}

.slider-item.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .slider-container {
        min-height: 250px;
        padding: 30px 0;
    }
}

/* フッタースタイル */
footer {
    background: #2d3748;
    color: #e5e7eb;
}

footer h3, footer h4 {
    color: #fff;
}

footer a {
    transition: color 0.3s cubic-bezier(.83,0,.17,1);
}

footer a:hover {
    color: #00a6cc;
}

@media (max-width: 750px) {
    .mobile-nav { display: block !important; }
    .desktop-nav { display: none !important; }
    .news-list-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .hero-text {
        font-size: 18px;
        line-height: 1.6;
    }
    .section-title {
        font-size: 24px;
        line-height: 1.4;
    }
    .section-label {
        font-size: 12px;
    }
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    /* Content block text sizing for mobile */
    p {
        font-size: 14px;
    }
}
@media (max-width: 550px) {
    .hero-text {
        font-size: 15px;
        line-height: 1.6;
    }
    .section-title {
        font-size: 22px;
    }
    .department-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 16px;
    }
}
@media (min-width: 751px) {
    .mobile-nav { display: none !important; }
    .desktop-nav { display: flex !important; }
}

/* ============================================
   完全レスポンシブ対応スタイル
   ============================================ */

/* 横スクロールの防止 */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* モバイルメニューが開いている時のbody固定 */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* 画像のレスポンシブ対応 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* iframeの完全レスポンシブ対応 */
iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* iframeラッパーのレスポンシブ対応 */
.iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

/* テーブルのレスポンシブ対応 */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

.table-responsive table {
    min-width: 600px;
    width: 100%;
}

/* ボタンとリンクのタッチターゲットサイズ確保（最小44x44px） */
@media (max-width: 768px) {
    a:not(.news-list-item):not(.department-card):not(.card-hover),
    button:not(.submenu-toggle) {
        min-height: 44px;
        min-width: 44px;
    }
    
    a.btn-primary,
    button.btn-primary,
    .btn-primary {
        padding: 14px 28px;
        font-size: 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .badge {
        padding: 10px 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* インラインリンクの調整 */
    a:not([class*="btn"]):not([class*="badge"]):not([class*="card"]) {
        display: inline;
    }
}

/* コンテナのパディング調整 */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* グリッドレイアウトの改善 */
@media (max-width: 768px) {
    .grid.grid-cols-2,
    .grid.grid-cols-3,
    .grid.grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

/* 診療時間表のレスポンシブ対応 */
@media (max-width: 768px) {
    .schedule-table {
        font-size: 0.75rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 8px 4px;
    }
    
    .schedule-table th:first-child,
    .schedule-table td:first-child {
        position: sticky;
        left: 0;
        background: #e6f7fc;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .schedule-table {
        font-size: 0.7rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 6px 3px;
    }
}

/* ヘッダー情報カードのレスポンシブ対応 */
@media (max-width: 768px) {
    .info-card {
        padding: 1rem !important;
    }
    
    .info-card p {
        font-size: 14px;
    }
}

/* ニュースリストのレスポンシブ対応 */
@media (max-width: 768px) {
    .news-list-item {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
    
    .news-list-item .text-gray-500 {
        font-size: 12px;
    }
}

/* 診療科カードのレスポンシブ対応 */
@media (max-width: 768px) {
    .department-card {
        padding: 1.5rem 1rem;
    }
    
    .department-card p {
        font-size: 13px;
    }
}

/* フッターのレスポンシブ対応 */
@media (max-width: 768px) {
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer h3, footer h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    footer p, footer li {
        font-size: 14px;
    }
}

/* アクセスセクションのレスポンシブ対応 */
@media (max-width: 1024px) {
    #access .grid {
        grid-template-columns: 1fr;
    }
}

/* 地図iframeのレスポンシブ対応 */
#access iframe,
iframe[title*="地図"],
iframe[aria-label*="地図"] {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    min-height: 300px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
    #access iframe,
    iframe[title*="地図"],
    iframe[aria-label*="地図"] {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    #access iframe,
    iframe[title*="地図"],
    iframe[aria-label*="地図"] {
        min-height: 200px;
        aspect-ratio: 1 / 1;
    }
}

/* 院長メッセージセクションのレスポンシブ対応 */
@media (max-width: 768px) {
    #message .flex-col {
        text-align: center;
    }
    
    #message .w-32 {
        width: 6rem;
        height: 6rem;
    }
    
    #message .text-6xl {
        font-size: 2.5rem;
    }
}

/* トピックスセクションのレスポンシブ対応 */
@media (max-width: 768px) {
    #topics .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #topics .w-16 {
        width: 3rem;
        height: 3rem;
    }
    
    #topics .text-2xl {
        font-size: 1.25rem;
    }
}

/* 施設セクションのレスポンシブ対応 */
@media (max-width: 1024px) {
    .image-frame {
        margin-bottom: 1rem;
    }
}

/* ヘッダー上部バナーのレスポンシブ対応 */
@media (max-width: 768px) {
    .flex.flex-col.md\:flex-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .flex.flex-col.md\:flex-row a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}

/* パンくずリストのレスポンシブ対応 */
@media (max-width: 768px) {
    .bg-gray-100 nav {
        font-size: 12px;
    }
}

/* 医師紹介ページのレスポンシブ対応 */
@media (max-width: 768px) {
    .w-48 {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 1rem;
    }
    
    .h-48 {
        height: auto;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
    
    .text-4xl {
        font-size: 1.75rem;
    }
}

/* お知らせページのレスポンシブ対応 */
@media (max-width: 768px) {
    .text-3xl {
        font-size: 1.5rem;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

/* スクロールトップボタンのレスポンシブ対応 */
@media (max-width: 768px) {
    #scrollToTop {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        padding: 0;
        z-index: 40;
        position: fixed;
    }
}

/* スクロールトップボタンが他の要素と重ならないように */
#scrollToTop {
    z-index: 40;
}

/* ヘッダーがstickyの場合、コンテンツが隠れないように */
header.sticky,
header[class*="sticky"],
header[class*="bg-white"][class*="shadow"] {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* ヘッダーの高さを考慮したコンテンツの配置 */
@media (max-width: 768px) {
    /* 最初のセクションがヘッダーの下に隠れないように */
    body > section:first-of-type,
    #hero-slider {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* ヘッダー情報バナーの高さを考慮 */
    #site-header + section,
    #site-header ~ section:first-of-type {
        margin-top: 0;
    }
}

/* モバイルメニューが開いている時の処理 */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* モバイルメニューのz-index確保 */
#mobileNav {
    z-index: 60 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100vw !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

/* コンテンツがヘッダーの下に隠れないように（アンカーリンク用） */
section[id],
div[id],
[id^="hero"],
[id^="news"],
[id^="medical"],
[id^="message"],
[id^="topics"],
[id^="access"] {
    scroll-margin-top: 120px;
}

@media (max-width: 768px) {
    section[id],
    div[id],
    [id^="hero"],
    [id^="news"],
    [id^="medical"],
    [id^="message"],
    [id^="topics"],
    [id^="access"] {
        scroll-margin-top: 100px;
    }
}

/* 固定ヘッダーがある場合のコンテンツ位置調整 */
@media (max-width: 768px) {
    /* ヘッダーの高さを考慮 */
    header {
        position: sticky;
        top: 0;
        z-index: 50;
    }
    
    /* 最初のセクションがヘッダーの下に隠れないように */
    #hero-slider,
    .hero-bg:first-of-type,
    section:first-of-type {
        margin-top: 0;
    }
}

/* ページヒーローのレスポンシブ対応 */
@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero p {
        font-size: 14px;
    }
}

/* テキストサイズの調整 */
@media (max-width: 768px) {
    .text-lg {
        font-size: 16px;
    }
    
    .text-xl {
        font-size: 18px;
    }
    
    .text-2xl {
        font-size: 20px;
    }
}

/* スペーシングの調整 */
@media (max-width: 768px) {
    .space-y-6 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-4 > * + * {
        margin-top: 0.75rem;
    }
    
    .space-y-3 > * + * {
        margin-top: 0.5rem;
    }
    
    .gap-10 {
        gap: 1.5rem;
    }
    
    .gap-8 {
        gap: 1rem;
    }
    
    .gap-6 {
        gap: 0.75rem;
    }
}

/* フォントサイズの微調整 */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    h3 {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* 超小型デバイス対応（320px以下） */
@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .section-padding {
        padding: 20px 0;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* タブレット対応（769px〜1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid.grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid.grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #access .grid {
        grid-template-columns: 1fr;
    }
}

/* 大型デバイス対応（1025px以上） */
@media (min-width: 1025px) {
    .content-shell {
        max-width: 1140px;
    }
    
    .container {
        max-width: 1200px;
    }
}

/* 横方向のオーバーフロー防止 */
section, div, article, aside, header, footer, nav, main {
    max-width: 100%;
    overflow-x: hidden;
}

/* テキストの折り返し */
p, span, li, td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 長いURLやテキストの処理（リンクのみ） */
a[href^="http"],
a[href^="https"],
a[href^="mailto:"] {
    word-break: break-all;
}

/* テーブルセルのテキスト折り返し */
td, th {
    word-break: break-word;
    hyphens: auto;
}

/* モバイルでのタッチ操作最適化 */
@media (max-width: 768px) {
    /* タッチターゲットの間隔確保 */
    a, button {
        -webkit-tap-highlight-color: rgba(0, 166, 204, 0.2);
    }
    
    /* スクロールの滑らかさ */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* フォーム要素のズーム防止（iOS） */
    input, select, textarea {
        font-size: 16px;
    }
    
    /* モバイルメニューが開いている時の背景固定 */
    body.menu-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    /* モバイルメニューの背景オーバーレイ（不要 - メニュー自体が全画面） */
    /* #mobileNav::before は削除 - メニュー自体が全画面を覆うため */
    
    /* ヘッダーの高さ分のマージンを確保 */
    body > section:first-of-type,
    body > div:first-of-type:not(#site-header) {
        margin-top: 0;
    }
}

/* ヘッダー関連のスタイル */
.header-utility-bar {
    background-color: #e6f7fc;
    border-bottom: 1px solid #b3e5f5;
}

.header-utility-text {
    color: #00a6cc;
}

.header-phone-button {
    background-color: #00a8ca;
    transition: background-color 0.3s;
}

.header-phone-button:hover {
    background-color: #007a96;
}

.header-logo {
    max-height: 64px;
}

.header-mobile-menu-btn {
    color: #00a6cc;
}

.header-phone-number {
    color: #00a6cc;
}

.header-badge {
    color: #00a6cc;
    border: 1px solid #b3e5f5;
}

.dropdown-menu {
    border-color: #e5e7eb;
}

.nav-link-hover {
    transition: color 0.3s cubic-bezier(0.83, 0, 0.17, 1);
}

.nav-link-hover:hover {
    color: #00a6cc;
}

.mobile-nav-fullscreen {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
}

/* 印刷時のレスポンシブ対応 */
@media print {
    * {
        background: white !important;
        color: black !important;
    }
    
    .mobile-nav,
    .desktop-nav,
    #scrollToTop,
    .btn-primary {
        display: none !important;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}
