@charset "utf-8";

/* --- 見出し --- */
.visit-badge {
    display: flex;
    align-items: baseline;
    background: #eef4f9;
    color: #0068b7;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1;
    font-size: 14px;
}

/* --- 共通詳細ボックス --- */
.detail-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.detail-box-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.visit-content-body {
    font-size: 15px;
    line-height: 1.8;
}

.detail-box p {
    margin-bottom: 0;
}

/* --- 画像ギャラリー (大きく表示) --- */
.gallery-item-large {
    display: block;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #f9f9f9;
    transition: box-shadow 0.2s;
}

.gallery-item-large:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item-large img {
    display: block;
    width: 100%;
    height: auto;
    /* 全体表示 */
    object-fit: contain;
}

/* --- モダンナビゲーション --- */
.modern-nav-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
}

.modern-nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 48%;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none !important;
    color: #444;
    transition: all 0.2s;
}

.modern-nav-link:hover {
    background: #fcfcfc;
    border-color: #0068b7;
    color: #0068b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.modern-nav-link.next {
    align-items: flex-end;
    text-align: right;
}

.nav-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
    font-weight: bold;
}

.nav-date {
    font-size: 16px;
    font-weight: bold;
    font-family: sans-serif;
}

.modern-nav-empty {
    width: 48%;
}

/* スマホ調整 */
@media (max-width: 600px) {
    .detail-box {
        padding: 15px;
    }

    .gallery-large-grid {
        grid-template-columns: 1fr;
    }

    /* 1列 */

    .modern-nav-container {
        gap: 10px;
    }

    .modern-nav-link {
        padding: 10px;
    }

    .nav-date {
        font-size: 14px;
    }
}