/*2025-05-02*/
.tour_card_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tour_card_item {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.tour_card_img_wrapper {
    position: relative;
}

.tour_area_tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #b94c4c;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
}

.tour_card_img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.tour_card_body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour_card_title {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 表示行数の制限 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.5;
    min-height: 4.5em;
    max-height: 4.5em;
}

.tour_card_date,
.tour_card_location,
.tour_card_price {
    font-size: 0.9rem;
    color: #444;
}

.tour_card_price strong {
    font-size: 1.2rem;
    color: #d9480f; /* 目立つ系（赤・橙系） */
}

.tour_card_features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #333;
}

.tour_card_features li {
    margin-bottom: 4px;
}

.tour_card_button {
    margin-top: auto;
    text-align: center;
}

.tour_card_button .button {
    display: inline-block;
    background: #2d6a4f;
    color: #fff;
    padding: 8px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.tour_card_button .button:hover {
    background: #214e39;
}

.company_title1 {
    font-size: clamp(19px, 1.3vw, 30px);
}

.company_info {
    font-size: 16px;
    color: #333;
    background-color: #f9f9f6;
    border: 1px solid #ddd;
    overflow: hidden;
}

.company_info .row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.company_info .row:last-child {
    border-bottom: none;
}

.company_info dt {
    width: 200px;
    background-color: #e4efe7;
    font-weight: bold;
    padding: 12px 16px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
}

.company_info dd {
    flex: 1;
    padding: 12px 16px;
    background-color: #fff;
}

.company_info a {
    color: #006699;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .company_info .row {
        flex-direction: column;
    }

    .company_info dt {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .company_info dd {
        background-color: #fff;
    }
}

dd{
    margin-bottom: 0;
}

.row {
    --bs-gutter-x: 0;
}
