/* ========================================
   ツアー詳細ページ CSS
   /wp-content/themes/lightning-g3-child/tour-style.css
======================================== */

.entry-meta {
    display: none;
}

.tour-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.tour-title {
    font-size: 1.4em;
    color: #3a7bd5;
    margin-bottom: 0.5em;
}

.tour-lead {
    margin-bottom: 1.5em;
    color: #555;
}

/* 画像3枚横並び */
.tour-photos {
    display: flex;
    gap: 12px;
    margin-bottom: 2em;
}

.tour-photo {
    flex: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
}

.tour-photo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* 体験内容セクション */
.tour-section {
    margin-bottom: 1.5em;
}

.tour-section h2 {
    display: inline-block;
    background-color: #978A59;
    color: #fff;
    font-size: 0.95em;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 3px;
    margin-bottom: 0.8em;
}

.tour-section p {
    background: #f7f7f7;
    padding: 1.2em 1.5em;
    border-radius: 4px;
    margin: 0;
}

/* 詳細テーブル */
.tour-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
    font-size: 0.92em;
}

.tour-detail-table th,
.tour-detail-table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    vertical-align: top;
    text-align: left;
}

.tour-detail-table th {
    background-color: #f0f0f0;
    font-weight: bold;
    white-space: nowrap;
    width: 160px;
    color: #444;
}

.tour-detail-table td {
    background-color: #fff;
}

.price-value {
    font-size: 1.2em;
    font-weight: bold;
}

/* 予約ボタン */
.tour-external-link {
    text-align: center;
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.tour-external-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #978A59;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.tour-external-link a::after {
    content: '>>';
}

.tour-external-link a:hover {
    background-color: #A4222B;
    color:#ffffff;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .tour-photos {
        flex-direction: column;
    }
    .tour-detail-table th {
        width: 120px;
    }
}

.entry-title {
   color: #BDAC6F;
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.25rem) !important;
}

.vk_posts.next-prev {
    display: none;
}